How to do Domain name Masking?

Domain name masking is also called URL masking that permits you to hide the actual domain name of an web site from the URL field of a user’s browser, whereas it shows the content of another web site.

For example, once your visitor opens your web site, you’ll have yourdomainname.com shown within the browser’s address bar, whereas the actual website loaded are yourOtherdomainname.com.

Domain name masking are often done simply by performing the steps as given below :

To do so, insert index.html file with the code shown below within 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>

Thus by following the steps as above will allow you to do simple domain name masking.