Tuesday 22 November 2011

How to Redirect Old Domain to New Domain Using .htaccess File


If you have changed your domain name and want to redirect every link of old domain to new domain, By Example if you want to redirect http://www.olddomain.com to http://www.newdomain.com. You can do this by permanent redirection (301) in your .htaccess file.
Redirect a domain on a Linux Server
Options + FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]:

0 comments:

Post a Comment