Hi I am doing a 301 redirect from www to http:// is this the right code in the .htaccess : Options +FollowSymLinks RewriteEngine On RewriteCond %{HTTP_HOST} ^http://www.admiral-scaffolding.co.uk$ [NC] RewriteRule ^(.*)$ http://admiral-scaffolding.co.uk$1 [R=301,L] many thanks
Options +FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^admiral-scaffolding\.co\.uk RewriteRule ^(.*)$ http://admiral-scaffolding.co.uk/$1 [R=301,L] Code (markup):