You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I'm feeling kinda on the Homer Simpson "Doh" side. I just installed V9 on a site and can't access the management side because of the SSL too many redirects issue.
I've tried removing the htaccess in not only the public directory but the private directory as well. Any help is greatly appreciated.
public directory httaccess file:
ErrorDocument 404 http://www.mywebsite.com RewriteEngine On # If we receive a forwarded http request from a proxy... RewriteCond %{HTTP:X-Forwarded-Proto} =http [OR] # ...or just a plain old http request directly from the client RewriteCond %{HTTP:X-Forwarded-Proto} ="" RewriteCond %{HTTPS} !=on # Redirect to https version RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
private directory htaccess:
AuthName ByPassword AuthUserFile /none/ AuthGroupFile /none/ AuthType Basic Require valid-user
Offline
K9 will handle all these rewrites itself, the only ones you need to worry about are those cpanel rewrites. If I were you, I'd try this:
Options +FollowSymLinks RewriteEngine on RewriteRule ^/[0-9]+\..+\.cpaneldcv$ - [L,PT] RewriteRule ^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ - [L,PT] RewriteRule ^index.php - [L,PT] RewriteRule ^$ index.php?COREseourl=/ [L,PT] RewriteRule ^/$ index.php?COREseourl=/ [L,PT] RewriteRule ^sitemap\.xml utilities/sitemap.xml [L,PT] RewriteCond %{REQUEST_URI} ^/ RewriteCond %{REQUEST_URI} !\.(xml|css|js|gif|jpg|jpeg|png|pdf)$ [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*) index.php?COREseourl=/$1 [L,PT]
Offline
Thanks for the info Nick. I tried this but it didn't work. I think since I am on a fresh install I will just wipe it all and try again, I did run across some errors on the original install because I forgot to chmod my private directory. I'll update when done.
Offline
First, turn off SEO. Remove the .htaccess. Assuming the problem goes away. If it does, then the issue is either on the Apache server side, or with the .htaccess file contents.
Offline