You can use frames to mask your address bar so it always shows
www.yourdomain.com when viewing your pages. Use the frameset below in your default page (index.htm). In this example, the frameset will load home.htm and start your site from there. But the address bar will stay showing
www.yourdomain.com.
This is the same technique used by most domain registrars for domain forwarding.
Code: Select all
<frameset rows="*">
<frame src="home.htm">
</frameset>