URL Masking

If you want to mask URL, you can try to use iframe.
Just create index.php file, and then paste this code to the index.php.

<html>

<head>

<title>Website</title>

<style>

html, body, iframe

{

margin: 0px;

padding: 0px;

border: 0;

text-align: center;

overflow-x: hidden;

overflow-y: auto;

}

</style>

</head>

<body>

<IFRAME SRC=”http://www.site.com” scrolling=”yes” width=”100%” height=”100%” FRAMEBORDER=”0″ MARGINWIDTH=”0″ MARGINHEIGHT=”0″ >

</body>

</html>

 

Leave a Reply