|
|
Is it possible to hide URL from Browser - HTML
|
Views : 1153
|
|
Tagged in : HTML
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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. |
|
By - Nirmala, On - 2009-09-22 |
|
|
|