How to do Domain name Masking?

Domain name masking is additionally called URL masking that permits you to cover the particular domain name of a 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 particular web site loaded are yourOtherdomainname.com.

By performing the following simple steps you can do the Domain name masking :

To do so, insert the code in your index.html file as 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>

Therefore, this code will allow you to do simple domain name masking.