as I can redirect to a page when this can not be shown in an iframe, for example google, if you do not load the iframe redirect google directly.
<script type="text/javascript">
function redirect(iframe)
{
window.location = iframe.src;
}
</script>
<iframe src="http://www.google.com" onerror="redirect(this)"></iframe>