Forum Moderators: open
I'm with pageoneresults - why would you want to hide this information when it's a standard part of web browsing, allows visitors to bookmark certain pages, link to certain pages, etc? There may be a more user-friendly way of achieving your purposes.
[edited by: tedster at 10:34 pm (utc) on Dec. 31, 2004]
I want to keep my main site URL the same throughout my entire site, instead of showing the specific pages...
I just revised a site like this, where they'd set it up with a 1-pixel frameset at the top and additionally disabled all right-clicks - this is positively the most annoying thing you can do to a site next to flooding it with pop-ups. In this case, it was done to protect the source code (all of which, by the way, was STOLEN from various free sites anyway.)
Also agree, Very Bad Idea.
Note that most search engines will not crawl your site if you use this technique.
<frameset rows="*">
<frame src="index.html">
</frameset>
Note that most search engines will not crawl your site if you use this technique.
not necessarilly true. simply place the contents of your index.html file in the noframes tags.
However, if you add links to the other pages in your noframes section, these pages get indexed under their original filename, so every user entering through a search engine will see the filenames anyway.
W3C has made a recommendation to use no file extensions for your web files. This might be something to consider. You won't see mysite.com/gallery/this.php, but mysite.com/gallery/this.
If you don't want to use file extensions, you need a hosting provider which supports this, for example with rewrite rules in the .htaccess file for an Apache server.