Well I would suggest that you not use frames when doing web development escpecially if you are wanting to web spiders to be able to crawl it. Instead I would suggest building a page with some sort of Server side scripting like ASP.net then within the asp.net script request the url from the second domain then just write the response directly to the page content. Now optionally you could try to cache the file locally to your server but this can become tricky when you might be dealing with a dynamic page on the other end.
Main Topics
Browse All Topics





by: minichickenPosted on 2006-03-16 at 13:30:53ID: 16209885
I know you can do it using HTML frames in your index.html file in your root of your domain
lse.com">
.com/other ">
So the index.html file in the root of domainname.com you can have this:
<HTML>
<HEAD>
<TITLE>URL Masking Using Frames</TITLE>
</HEAD>
<FRAMESET>
<FRAME src="http://www.somewheree
</FRAMESET>
</HTML>
This way, when people enter domainname.com the index file will open somewhereelse.com but still have domainname.com in the address.
Like wise with other.domainname.com, in the index.html of other.domainname.com
<HTML>
<HEAD>
<TITLE>URL Masking Using Frames</TITLE>
</HEAD>
<FRAMESET>
<FRAME src="http://www.domainname
</FRAMESET>
</HTML>
i hope this help...