8 lines
116 B
PHP
8 lines
116 B
PHP
<?php
|
|
|
|
$_SESSION = [];
|
|
session_destroy();
|
|
|
|
$config = Config::load();
|
|
header('Location: ' . $config->basePath);
|
|
exit; |