Zen Cart Logo
Forums / General Questions / SSL Redirects, customers getting kicked.

SSL Redirects, customers getting kicked.

Locked

Views: 970

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
25 Nov 2009, 12:07 PM
#1
dwessell avatar

dwessell

Zen Follower

Join Date:
Mar 2005
Posts:
143
Plugin Contributions:
0

SSL Redirects, customers getting kicked.

Hi,

We purchased a SSL cert through verisign for http://www.straightrazordesigns.com. I then setup a redirect for http://straightrazordesigns.com to http://www.straightrazordesigns.com (.htaccss).

RewriteEngine On
RewriteCond %{HTTP_HOST} ^straightrazordesigns.com
RewriteRule (.*) http://www.straightrazordesigns.com/$1 [R=301,L]

All configure.php files are setup to use http://www.straightrazordesigns.com.

However, I'm having some customers that when they get to the login page of the checkout process (https://www.straightrazordesigns.com/index.php?main_page=login) after they fill out the information they get kicked back to the homepage.

Can anyone offer suggestions?

Thanks
David

25 Nov 2009, 1:57 PM
#2
website_rob avatar

website_rob

Inactive

Join Date:
Oct 2006
Location:
Alberta, Canada
Posts:
4,572
Plugin Contributions:
0

Re: SSL Redirects, customers getting kicked.

The 'log in' link in your Header Navigation menu does not use an 'https' connection.

If have 'https' set to 'true' in your 'config' files, then I can only presume the 'log in' link is hard coded and needs to be changed accordingly.

25 Nov 2009, 2:09 PM
#3
dwessell avatar

dwessell

Zen Follower

Join Date:
Mar 2005
Posts:
143
Plugin Contributions:
0

Re: SSL Redirects, customers getting kicked.

Rob,

That's setup as an ezpage. And your right, it wasn't listed as ssl.. But they were going to the login page via the checkout procedure. That wouldn't cause the issue, would it?

Thanks
David

25 Nov 2009, 7:22 PM
#4
website_rob avatar

website_rob

Inactive

Join Date:
Oct 2006
Location:
Alberta, Canada
Posts:
4,572
Plugin Contributions:
0

Re: SSL Redirects, customers getting kicked.

After re-reading your first post I would change to using this redirection:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^straightrazordesigns.com [NC]
RewriteRule [COLOR=DarkRed]^/COLOR http://www.straightrazordesigns.com/$1 [R=301,L]

See if that helps. Otherwise, more information on ZC version, Server software, etc. would need to be known.