servnest/public/auth/logout.php

11 lines
187 B
PHP

<?php require "../../common/html.php"; ?>
<?php
session_destroy();
header('Clear-Site-Data: "*"');
header('Location: ' . CONF['common']['prefix'] . '/');
exit;
?>
<?php closeHTML(); ?>