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