I have a simple rewrite rule in my .htaccess file that creates search engine friendly urls for my visitors. The rule works great over http connections, but for some reason when the request is made over https the rule is ignored.
Here is the contents of the .htaccess file:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z\-]+)/$ /$1.php [L]
</IfModule>
Any ideas or suggestions as to why https requests ignore the rule, but http requests follow the rule? Any help would be greatly appreciated. I spent the entire day on Google and various forums to no avail.
Please let me know if more details would be helpful.
Thanks!
Jeremy