Files
AI-Chat/public/index.php
2026-05-06 16:29:46 +08:00

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;
}