mirror of
https://github.com/myvesta/vesta.git
synced 2025-01-12 14:02:54 -08:00
9 lines
138 B
PHP
9 lines
138 B
PHP
<?php
|
|
session_start();
|
|
if (isset($_SESSION['user'])) {
|
|
header("Location: /list/user");
|
|
} else {
|
|
header("Location: /login/");
|
|
}
|
|
?>
|