1 Star 17 Fork 7

易航/网址引导系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
易航 提交于 2024-10-07 16:56 . V2.55
<?php
/*
* @Author : 易航
* @Url : http://guide.bri6.cn
* @Date : 2022-10-10 00:00:00
* @LastEditTime : 2024-08-10 00:00:00
* @Email : 2136118039@qq.com
* @Project : 易航网址导航系统
* @Description : 一款极其优雅的易航网址导航系统
* @Read me : 感谢您使用易航网址导航系统,系统源码有详细的注释,支持二次开发。
* @Remind : 使用盗版系统会存在各种未知风险。支持正版,从我做起!
*/
require_once 'public/common.php';
// 获取主题,默认值为 THEME 常量
$theme = $_GET['theme'] ?? THEME;
// 注册插件
system\plugin\Manager::register();
// 注册插件路由
system\plugin\Manager::trigger('route');
define('LOAD_THEME', true);
// 加载主题自定义路由
system\theme\Manager::needFile('public/route', $theme);
// 注册主题路由
$register = system\library\Route::rule('/[{mod}]', function ($param) use ($theme) {
// 初始化主题方法并载入主题文件
$method = new system\theme\Method($theme);
return $method->__load($param['mod']);
});
// 如果主题路由注册失败则响应404错误
if (!$register) response404();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/yh-it/guide.git
git@gitee.com:yh-it/guide.git
yh-it
guide
网址引导系统
master

搜索帮助