Comment on 301 Redirect Htaccess by Eloi George.

301 Redirect Htaccess In your first “Posted in Google Search Engine, SEO Consultant Tips” example, I think you actually wanted to catch all requests for those URIs, not requests for everything *but* those URIs. If you take out the “!”, it should work as advertised:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.seo-gold.com$
RewriteRule (.*) http://www.stallion-theme.co.uk/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^seo-gold.com$
RewriteRule (.*) http://www.stallion-theme.co.uk/$1 [R=301,L]