1

I have a site which works within a iframe, i want it to breakout the iframe, and redirect to another site, the whole new site with its own url should open, not maintaining the current URL or iframe.

I have tried

<meta http-equiv="refresh" content="0"; URL="http://www.newsite.com/newurl.html">
and
header ('Location:http://www.newsite.com/');

they didnt work out for me.

1 Answers1

2

Try this:

<script type="text/javascript">
    if (top.location!= self.location) {
       top.location = 'http://www.newsite.com/';
    }
</script>

If this runs within an iframe it will redirect the parent window to http://www.newsite.com/ .

Liam
  • 19,819
  • 24
  • 83
  • 123