I am using mod_rewrite for search engine friendly URLs. I have this line that works great:
RewriteRule ^Pay ./pay.php [L] #Pay
but I would like to also have a match if a visitor types http://example.com/pay
(note the lowercase). I have tried using NC
but I get a 500 error. I have tried making 2 separate rules one uppercase and one lowercase, but again 500 error.
Can this be done on one line using a regular expression? Something like:
RewriteRule ^([P-p])ay ./pay.php [L] #Pay
If so what is the proper way? If not how could I accomplish this without using mod_spelling?