Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hide sub address on url

Status
Not open for further replies.
There's really no way to truly hide the complete url from someone but you can keep it from showing in the location box by creating a frames based page. If you have a 1 pixel high dummy frame and then a frame containing the real page, the browser will show the main address regardless of which page is in the inner frame.

Something like this should work for you.

<frameset rows=&quot;1,*&quot; frameborder=0 border=0 framespacing=0>
<frame src=&quot;dummyPage.html&quot; noresize>
<frame src=&quot;/somewhere/someplay.cfm&quot; noresize>
</frameset>

Hope this helps,
GJ
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top