How to fix .htaccess redirection issue in GodDaddy hosting
Posted: Sat Mar 13, 2010 3:31 pm
Recently I encountered a problem when I try to redirect my main hosting account to one of my other domain which is directed to a folder on the same hosting account. Standard redirection didn't work and stopped all domains.
Here is the working .htaccess code.
Here is the working .htaccess code.
Code: Select all
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.newdomain\.com
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]