PDA

View Full Version : Frame Forward subdomains via index.html



Jeff
04-11-2003, 05:45 PM
I've seen instructions here for Frame Forward domain redirects via .htaccess and subdomain redirects via .htaccess. How 'bout providing the syntax for a Frame Forward subdomain?

In case i'm not asking for the right thing... let's say my domain is example.com and I want a subdomain that points to www.words.com/deeplink, so that when a user load words.example.com into the browser, it loads the "deeplink" URL with my finlayj domain url still showing in the browser. The user doesn't see the "real" URL. A DNS provider I use for some of my domains call this "stealth redirect." How can I do stealth redirects via .htaccess?

bluesguy
04-14-2003, 03:57 PM
Just make a frame redirect index.html file in your words.example.com directory with something like the following contents:

<HTML>
<HEAD>

<TITLE>New Webpage name</TITLE>
</HEAD>
<FRAMESET rows="100%,*" border=0 frameborder=0 framespacing=0>
<FRAME name=top src="http://www.words.com/deeplink" noresize>
</FRAMESET>
</HTML>

Jeff
04-19-2003, 03:03 PM
That simple solution works like a charm! 8)