Help masking subdomain

Status
Not open for further replies.

weex10h2

New Member
Messages
1
Reaction score
0
Points
1
Hello,

I am trying to mask wee.x10host.com so that visitors only see the womenempoweringeachother.org. Can someone direct me as to how this is done?
 

lylex10h

Active Member
Messages
982
Reaction score
71
Points
28
Create a .htaccess file in the directory for domain (probably public_html) with the following:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^wee.x10host.com$
RewriteRule ^(.*)$ http://womenempoweringeachother.org/$1 [R=301,L]
 
Status
Not open for further replies.
Top