Hi, I have made a 301 redirect using htaccess: "Redirect 301 / http://www.newdomain.com/" Problem is that it doesn't redirect stuff from subdomains ("example.olddomain.com"). Anyone know how to redirect subdomains? I want to redirect the subdomains to my new domain without subdomains, i.e. example.olddomain.com >> newdomain.com Thanks, Mads
.htaccess in root of example.olddomain.com: RewriteEngine on RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301] Code (markup):
Is RewriteEngine on RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301] Code (markup): better than my version? Redirect 301 / http://www.newdomain.com/ Code (markup):