Simple domain name masking
Domain name masking allows you to show one URL in the browser’s address bar, while another website’s content is loaded. For example, when somebody opens your website, you can have yourdomain.com shown in the browser’s address bar while the actual site loaded will be yourOTHERdomain.com.
To achieve the above, an index.html file with the following code should be placed in the main folder for yourdomain.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://yourotherdomain.com" frameborder="0"> <frame frameborder="0"> </frameset>
</html>
The only thing you should change in the code above for the index.html file which you will create is “yourotherdomain.com” with your real domain name.