Okay, I have done a fair amount of searching but still can\'t find something specific enough to handle my problem.
Right now I have a DNS record that redirects all o
This article Covers .htacces and ModRewrite to redirect any request made to any domin other than the primary one redirect to the primary domain.
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !www.newdomain.com$ [NC] RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]