11 lines
245 B
PHP
11 lines
245 B
PHP
<?php
|
|
// 首页入口 - 根据安装状态自动路由
|
|
$configFile = __DIR__ . '/../config/db-config.json';
|
|
if (file_exists($configFile)) {
|
|
header('Location: /login.php');
|
|
exit;
|
|
} else {
|
|
header('Location: /install.php');
|
|
exit;
|
|
}
|