![]() |
|
|
+ Search |
![]()
|
Dec 13th, 2003 07:50
Jon Kriek, Ben Udall, Howard Betsworth,
Simply specify the location response-header field with a .php file
extension.
<?php
ob_start();
if(!headers_sent()) {
header('Location: http://example.com/page.php');
exit();
}
ob_end_flush();
?>