Quantcast
Channel: Gigarocket Forum - All Forums
Viewing all articles
Browse latest Browse all 1923

Way to Redirect a URL via .htaccess

$
0
0
if you changed your domain and you want to redirect visitors from old domain to new domain here is the best way to redirect them..

add this on your .htaccess file


RewriteEngine On
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]


“L” indicates that it’s the last instruction and “R” means redirect, and “301” means a permanent redirect.
Thanks..

Viewing all articles
Browse latest Browse all 1923

Trending Articles