.htaccess rewrite rule problem
-
The plugin autogenerate this lines which conflict with the rewrite rules set by my self:
RewriteCond %{HTTP_HOST} ^www.mysite.com
RewriteRule ^(.*)$ https://mysite.com/$1 [R=301,L]
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_HOST} ^mysite.com
RewriteRule ^(.*)$ https\:\/\/mysite\.com\/$1 [R=301,L]These lines cause my site a redirection loop when using Firefox with a SPDY connection. I don’t know why but removing these lines can solve the problem. And these lines are useless for me, because I wrote the rewrite rules in <VirtualHost> section in Apache2 conf file.
Could you please remove these lines or just give me an option to turn it off?
Now I have to remove them manually after I modify the option of WPFC
The topic ‘.htaccess rewrite rule problem’ is closed to new replies.