O.k. on http://www.homestead.com/ their website used to be set up differently years ago they had it so every page on their site showed the same url and i was woundering if there is a way to do that because i would like to have it so every page on my website shows the same url so i kinda hide the links to my specific pages. Any help would be greatly appreciated. :D
AdamGundry
02-12-2003, 03:31 AM
You should be able to use a frameset, like this, instead of the body, on your index page:
<FRAMESET rows="*">
<FRAME src="index2.html">
</FRAMESET>
Then place the page's content in index2.html. As the user clicks on links, the page title and URL stay the same.
Be aware this has disadvantages, such as incompatibility with old browsers. Make sure you read the W3C documentation (http://www.w3.org/TR/html401/present/frames.html).
Adam