hide subfolders

darksunday

New member
Joined
Mar 12, 2005
Messages
2
hi. i am new to this forum. this maybe a stupid question to ask but here it goes. how do i hide the subfolders in the address section of a browser.
i just want the address to show www.mydomain.com on all my site's pages. if anyone can help, i will sure appreciate it.
 
Use a zero-size frame.

You should be able to find help using Google; it's really a html programming issue.

Here's how we do it to redirect our "domains.nobaloney.net" site to our reseller account:
Code:
<HTML>
<FRAMESET ROWS="*,0" FRAMEBORDER=0 BORDER=0 FRAMESPACING=0>
<FRAME SRC="https://secure.registerapi.com/order/register/check.php?siteid=9971"
</FRAMESET>
</HTML>

If you visit the site you'll see that the frame is totally invisible.

Jeff
 
Back
Top