I have the following .htaccess file
ErrorDocument 404 /missing.php
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301,E=nocache:1]
RewriteRule ^donating$ page.php?ipage=30 [L,NC]
Initially the last rewriterule read:
RewriteRule ^Donating$ page.php?ipage=30 [L,NC]
The only change being I've now forced all permalink names to be lowercase.
The problem I'm having is that when I navigate to http://www.mysite.com/Donating
the correct page is displayed, but with http://www.mysite.com/donating
I'm redirected to missing.php
I'm at a loss as to what to try next. Any suggestions?
donatingin the same directory as the htaccess file? – Shane Madden Feb 8 at 18:25