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?

link|improve this question
Is there a directory named donating in the same directory as the htaccess file? – Shane Madden Feb 8 at 18:25
Have you reloaded apache and flushed your browser cache? – Mathias R. Jessen Feb 8 at 18:26
There is no directory named donating (or Donating) – Chris Baker Feb 8 at 21:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.