I am looking to change the extension for all pages from html to php as I redo a company's website. So I'm adding these lines into the .htaccess file.
RewriteEngine On
RewriteRule ^/?(.*)\.html$ /$1.php [R=301,L]
However, the contact and about pages were in a folder in the old site that I don't want to put them into on the new site. So if I put the specific redirects above the generic "html-to-php" redirect, like this:
redirect 301 /company-information/contact.html http://www.mydomain.com/contact.php
RewriteEngine On
RewriteRule ^/?(.*)\.html$ /$1.php [R=301,L]
will that redirect the contact page before it even looks at the generic redirect or does it go all the way through the .htaccess file and override whatever went before in the file.
Or am I getting this totally around my head and there's another, much better way of doing it?