Domain name masking is also known as URL masking that allows you to hide the actual domain name of a website from the URL field of a user’s browser, while it shows the content of another website.
For example, when your visitor opens your website, you can have yourdomainname.com shown in the browser’s address bar, while the actual site loaded will be yourOtherdomainname.com.
Domain name masking can be done easily by performing the following steps :
To do so, insert index.html file with the code shown below in the main folder for yourdomainname.com.
<html> <head> <title>Page Title</title> <meta name = "description" content="Description"> <meta name="keywords" content="Keyword1, Keyword2"> </head> <frameset rows="100%,0" border="0"> <frame src="http://yourotherdomainname.com" frameborder="0"> <frame frameborder="0"> </frameset> </html>
That’s it. This code will allow you to do simple domain name masking.
Also Read :
1)How to Connect a Domain Name to a Hosting Account or a Reseller Server?