Site Fuse! programming, design, hosting, promotion and advertising tips for webmasters

301 redirect htaccess - http redirect page

Home  \  Forums  \  IT, Hosting & Domain Forums  \  Apache Forums  \  301 redirect htaccess - http redirect page
Share   

user photo

MrPhear   1 years, 6 months ago

301 Permanent redicet old domain to new domain
To 301 redirect all directories and pages of your old domain to a new domain, create a .htaccess file with the code below;

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.url-to-redirect.com/$1 [R=301,L]


Place the .htaccess file in the root directory of your old website.
user photo
Guest