Keep Original URL and Heading in Browser but redirect

wanabe

Registered Member
Joined
Jan 16, 2008
Messages
53
Reaction score
3
hi there,

I have read and tried the html codes in this forum without success..

I tried the meta refresh but it looked just like a normal redirected page
as the redirected page showed in the url channel at the top..

What I have is my website - MYWEBSITE.com , I want to be able to
have my MYWEBSITE.com stay in the browser channel while the page
content is from a redirected website - MYBIZZ.com

thanks in advance
 
For this you'll need to use an iframe.

Put this inside your <body> tags and change the http://yoursitehere.com with the site you want to "redirect" to:

<iframe style='position:absolute;z-index:10;top:0;left:0;margin' width='100%' height='100%' scrolling='auto' marginwidth='0' marginheight='0' align='top' frameborder='0' SRC='http://yoursitehere.com' /></iframe>
 
Also note that IFRAMES pass the referrer - so make sure you know where your sending your traffic
 
For this you'll need to use an iframe.

Put this inside your <body> tags and change the http://yoursitehere.com with the site you want to "redirect" to:

<iframe style='position:absolute;z-index:10;top:0;left:0;margin' width='100%' height='100%' scrolling='auto' marginwidth='0' marginheight='0' align='top' frameborder='0' SRC='http://yoursitehere.com' /></iframe>

thanks, absolute winner, I have used iframes before but not this way, which tells me I didnt know anything before - my website now has the original url still showing in the browser url spot at the top of the browser but the affiliate page I wanted to land on is showing..

just a little background, I am about to start a long term campaign to build up links pointing to my Url but of course I expect in say 6 - 12 months to no longer need the affiliate page, I will turn my current Url which just redirects into a full blown website using wordpress, so it will be a destination by itself, but until today I have been held back by the thought of having to use the Affil link directly in all my campaigns which is a complete waste of time in the Long Term..

Thanks again.. you have made my day...
 
For this you'll need to use an iframe.

Put this inside your <.body>....................

I know this is 4+ years old, but still works 100% and even caused me from getting a headache manually editing the .htaccess file on my server. THANKS A TON!

p.s. I was not able to copy the quote correctly due to account restrictions for being a newb ;D
 
For this you'll need to use an iframe.

Put this inside your <body> tags and change the url with the site you want to "redirect" to:

<iframe style='position:absolute;z-index:10;top:0;left:0;margin' width='100%' height='100%' scrolling='auto' marginwidth='0' marginheight='0' align='top' frameborder='0' SRC='yoursitehere' /></iframe>

So how would I implement this into a clickable link or a delayed redirect?
 
So how would I implement this into a clickable link or a delayed redirect?

Create test.html file and upload it to your hosting www folder.
Copy test.html link i.e. yoursite.com/test.html
Hyperlink/paste this where you needed it to.

To delay the redirect use meta refresh one line code in the same html.
 
Back
Top