Redirect an Old Domain to a New Domain with .htaccess full detail by jani

Tody i tell you

how to redirect your old domain to new domain via .htaccess

Here's a quick snippet of code a to keep around if you ever migrate from an old domain to a new domain. Shown here is what I used to maove bol.com to whole.com: RewriteEngine on RewriteCond %{HTTP_HOST} ^bol.com$ [OR]RewriteCond %{HTTP_HOST} ^www.bol.com$ [OR]RewriteCond %{HTTP_HOST} ^www.whole.com$ RewriteRule (.*)$ http://whole.com/$1 [R=301,L] This not only redirects to whole.com from bol.com but also bumps off the www.subdomain