7 lines
232 B
PHP
7 lines
232 B
PHP
<?php
|
|
/**
|
|
* 站点入口(安全):原 phpinfo() 会泄露服务器敏感信息,已移除。
|
|
* 转发至正式前端入口 public/index.php(其 BASE_PATH 仍指向项目根)。
|
|
*/
|
|
require __DIR__ . '/public/index.php';
|