HerrmannTheGerman
03-13-2010, 02:52 PM
Hello,
I am looking for simple (free?) url redirect/frame script, or as some people call "url masking". My hosting company doesnt provide such a thing. Any recommendations?
Thank you very much in advance.
Best whishes,
Herrmann
agustan
03-14-2010, 11:49 AM
Are you asking about URL redirect? or about HTML Frame tag?
URL redirect works like this:
User types www.domain.com , and the script redirect the URL to another page (i.e: www.redirectionpage.com) - this way, HTTP address URL on the user's browser will also be changed.
You can read here (http://www.webconfs.com/how-to-redirect-a-webpage.php) about how Redirection scripts work.
But if you wanted to use HTML Frame Tag (open other site on the browser, but the URL address on the browser won't be changed), then try use this code:
<html>
<head>
<title>Site title</title>
</head>
<frameset rows="100%" >
<frame src="http://www.yoursitehere.com" />
</frameset>
</html>
HerrmannTheGerman
03-14-2010, 12:38 PM
Yeah, I am looking for something like the HTML Frame Tag for promoting affiliate products i. e.
if I promote a site like this: https://immortal.infusionsoft.com/go/tms/xtraffic/ using my own domain like www.mysite.com (http://www.mysite.com), I want my own url shown in the browser adress bar instead of the ugly affiliate link.
agustan
03-14-2010, 06:39 PM
Well, you can try that 2nd option I gave you earlier (use HTML frame code).
Just replace this code:
<frame src="http://www.yoursitehere.com" /> with:
<frame src="https://immortal.infusionsoft.com/go/tms/xtraffic/" />
HerrmannTheGerman
03-14-2010, 06:41 PM
Thanks. Works wonderful :agree:
agustan
03-15-2010, 08:23 AM
You're welcome Herrmann :) Hope it's very useful for you.