Redirect question

fun4uoc

Supreme Member
Joined
Dec 25, 2007
Messages
1,205
Reaction score
1,049
Any idea why this redirect, url cloak isn't working in ie8? Just get a blank page.

Code:
<body>
<frame src="http://myaffiliatelink.com" name=mainwindow frameborder=no framespacing=0 marginheight=0 marginwidth=0>
</frame></frameset>

<noframes><h2>Your browser does not support frames. We recommend
upgrading your browser.</h2><br><br><center>Click <a href="http://myaffiliatelink.com" >here
</a> to enter the site.</center></noframes>
</body>
 
I'm not a good HTML coder, but where did ending frameset come in? You got this:
Code:
</frame></frameset>
Try deleting that (If this is wrong, I'll make up for it with this ;)...)

I found this, it's a meta refresh. Add this between the head tags:

Code:
<META HTTP-EQUIV=Refresh CONTENT="0;URL=http://www.abc.com">
Don't forget to change abc.com to your url...


I got this of Wikipedia:

Code:
[LEFT] <frameset rows="100%">
  <frame src="http://www.example.com/">
</frameset>
<noframes>
  <body>Please follow <a href="http://www.example.com/">link</a>!</body>
</noframes> [/LEFT]
 
Last edited:
Thanks lamlam, don't know where the closing frameset came from but that didn't fix it.
 
Just figured it out, it was a cookie I was trying to drop that ie8 didn't like.:D
 
Back
Top