My catches that I use for Google wont work with my current rules... :-(
RewriteEngine on
RewriteRule ^about\.php$ /about/ <- catches old URL request from Google Index
RewriteRule ^about(/)?$ about.php [nc] <- current rule, shows "about.php" when URL is domain.com/about/
Error I get is: Internal Server Error
What im doing to mimic a request coming form Google is typing into my address bar the URL that Google has indexed:
http://www.domain.com/about.phpThe 1st rule above should catch this old URL from Google and write it as
http://www.domain.com/about/Then i want to use my current rule to open about.php when URL like:
http://www.domain.com/about/ is request...
Am I doing this the wrong way?