In somewhat of a panic here - I can't seem to figure out the cause of this problem I'm having with redirect loops. Sometimes orders come in fine for days and then out of the blue they stop due to a redirect loop issue. I have to restart my server in order to fix this. Lately they're happening more and more often. I can't seem to figure out why.
I have no new mods or additions to my 1.3.9h site.
I'm using Simple SEO.
My configure.php is set to use www.phytoextractum.com
The redirect loop happens when switching to SSL or my account/login pages.
Happening across ALL browsers.
My SSL is a basic GoDaddy SSL cert.
My htaccess is:
#### BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
## Adding WWW to all requests:
ReWriteCond %{HTTP_HOST} ^phytoextractum.com [NC]
ReWriteRule ^(.*) http://www.phytoextractum.com$1 [R=301,L]
What could I be doing wrong? Any help at all is greatly appreciated and thanks in advance!


Reply With Quote

