aanvraag voor Re-direct script!
Dit is gewoon een javasciptje :)

<META HTTP-EQUIV="refresh" CONTENT="1; URL=http://bezoek.write2me.nl/">

<script>
if (parent.frames.length > 0)
parent.location.href = location.href
</script>

vervang de url met de url van de pagina waarheen hij moet redirecten.
<?php
header("Location: http://www.example.com/";); /* Redirect browser */

/* Make sure that code below does not get executed when we redirect. */
exit;
?>

Reageren