9 lines
226 B
PHP
9 lines
226 B
PHP
|
<?php
|
||
|
session_start();
|
||
|
session_destroy();
|
||
|
|
||
|
$hostname = $_SERVER['HTTP_HOST'];
|
||
|
$path = dirname($_SERVER['PHP_SELF']);
|
||
|
|
||
|
header('Location: http://'.$hostname.($path == '/' ? '' : $path).'/index.html');
|
||
|
?>
|