Page redirecting to blank page

Status
Not open for further replies.

LaTJay

New Member
Messages
15
Reaction score
0
Points
0
Is it possible to write a page that redirects a browser to about:blank? I want it to look like this:
Someone types exampleaddress.com/redirectingpage in the address bar and it makes his browser show a blank page (about:blank).
 
Last edited:

marshian

New Member
Messages
526
Reaction score
9
Points
0
Try this code:
PHP:
<?php
header("Location: about:blank");
?>
 
Status
Not open for further replies.
Top