lylme_spage/index.php

8 lines
308 B
PHP
Raw Normal View History

2022-01-21 18:04:06 +08:00
<?php
@header('Content-Type: text/html; charset=UTF-8');
2022-03-19 21:49:17 +08:00
if (!file_exists('install/install.lock'))
2022-03-12 16:30:59 +08:00
exit('<title>六零导航页 - 安装程序</title>您还未安装,点击<a href="install"><font color="blue">这里</font></a>开始安装!');
2022-03-19 21:49:17 +08:00
include "./include/common.php";
include $template;
2022-03-05 15:21:51 +08:00
?>