Web Redirection

S34RCH1

Newbie
Joined
Sep 9, 2016
Messages
7
Reaction score
0
I would like to know how to redirect some domains to a single domain
eX: i have domainname.com, dnma.com and redfert.com and i want that once some one visits one of this will beredirected to werewe.com
 
I would like to know how to redirect some domains to a single domain
eX: i have domainname.com, dnma.com and redfert.com and i want that once some one visits one of this will beredirected to werewe.com
redirection uses javascript:)
 
Create a .htaccess file on a directory and point all those into that directory root. Then add this line.

RewriteRule .* http://example.com/ [L,R=301,NC]
 
Back
Top