Topic: Rewrite a single URL with .htaccess to shorter URL
We have a website, and we have a single PHP script that serves a single page. Its URL is:
http://www.pets.com/pet_care_info_07_07_2008.phpWe want to clean up the URL, and our ideal URL would be:
http://www.pets.com/pet-care/RewriteEngine On # Turn on the rewriting engine
RewriteRule ^pet-care/?$ pet_care_info_01_02_2008.php [NC,L] # Handle requests for "pet-care"