Oh boy what a week its been! I'm STILL trying to configure OSCommerce. Anyway, I discovered the problem.
I'm setting this up on a multi-hosted domain, and I was trying to use the shared SSL. But it would never go into secure mode. I was just about to submit a ticket when I realized what it was.
I have my .htaccess file to rewrite the URL for this multi-hosted, so whenever it tries to go to the secure server, this thing rewrites the header.
Does anyone know of a way to keep the URL clean while still allowing the secure server? Maybe some way of saying "rewrite the URL to domain.com UNLESS contains secure22.nocdirect.com"?
Here's my htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.domain\.com(:80)?$
RewriteCond %{HTTP_HOST} !^domain\.com(:80)?$
RewriteRule ^(.*) http://www.domain.com/$1 [L,R]
Thanks
Sam


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks