mirror of
https://github.com/myvesta/vesta.git
synced 2025-01-07 19:49:51 -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/");
|
|
}
|