mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-04 12:40:16 -08:00
9 lines
139 B
PHP
9 lines
139 B
PHP
<?php
|
|
session_start();
|
|
if (isset($_SESSION['user'])) {
|
|
header("Location: /list/user/");
|
|
} else {
|
|
header("Location: /login/");
|
|
}
|
|
?>
|