1) How to make my site re-direct to www. 2) How to make my site re-direct all 404 to / My site - www.trustscotland.co.uk
in .htaccess file paste the code below RewriteEngine On ErrorDocument 404 /404.php ErrorDocument 401 /404.php RewriteCond %{HTTP_HOST} !^(www|mobile)\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] Code (markup):
If the HOST is not www or Mobile ( if you have any other sub domain that can be added in here ) you may be interested in how to move your ww.trustscotland.co.uk/index.php to ww.trustscotland.co.uk too RewriteRule ^index.php$ http://www.trustscotland.co.uk/ [R=301,L] Code (markup): Let me know if you have any other question Manish @ Business2Sell.com.au