Hello Please help me to forward my entire domain to another domain using .htaccess modification This is my .htaccess Thank you
Much easier to do it through Cpanel. But if you insist on doing it through .htaccess, you still can, take a look here: http://www.howtodothings.com/comput...cess-for-301-redirects-domain-name-forwarding That's a great article. Enjoy
Use this: redirect 301 / http://www.newsite.com/ Code (markup): Remove everyting else in the file. It will correctly forward from old.com/test.txt to new.com/test.txt and so on.
or u can use mod reqrite Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^(.*)oldhost.com [NC] RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]