I recently found out that this does work for more than one page but I NEED to put in a "/" at the end (ex: website/consultation/. Not website/consultation) For some reason, i do not need the "/" for the contact page. a little odd i think.
Code:
#Redirect for nonexistant URLs
ErrorDocument 404 /404.html
#Redirect for Forbidden Pages
ErrorDocument 403 /403.html
#Eliminates the use of www.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Options All -Indexes
#Makes contact page wm-cpa.com/contact
RewriteEngine On
RewriteRule ^contact/$ /contact/faq.html [L]
RewriteRule ^consultation/$ /contact/consultation.html [L]
#Does not require .html after urls
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule .* $0.html
Thanks