How do I use .htaccess to redirect links to pages that don't exist to one particular page that does exist? For instance if I have HTML links such to things like page1.html page2.html page3.html (these pages don't exist)... I want them to redirect to redirect.html thanks
Add this to your .htaccess file Redirect permanent /page1.html http://www.yourdomain.com/redirect.html Cheers.