Is it possible to hide URL from Browser
by Nirmala[ Edit ] 2009-09-22 10:36:23
Use
iframe to hide actual url from browser.
For Example,
If you want to hide all actual url in your website. Just include the below code into your home page(i.e index.php or index.html)
<iframe src="index.html" width="100%" height="100%" frameborder="0" scrolling="no"/>
We have used iframe to display the "index.html" page in the home page by using "src" attribute. The width and height should be "100%" and border should be " " for hiding the actual URL from the browser and displaying it so normal.
When a new link is clicked in the page, it gets loaded within "iframe" and displays the same URL throughout the website.