thinkphp6多用用模式下缩短路由隐藏index应用名

2024-04-10 381 0

thinkphp

thinkphp

thinkphp6多用用模式下缩短路由隐藏index应用名方法:

找到入口文件,一般public目录下index.php

找到

$response = $http->run();

替换为如下代码即可

// 关键在此处
$_amain = 'index';
$_aother = 'admin|common'; // 匹配此条件,就按照tp默认模式跑。否则就全部跑index应用
if (preg_match('/^\/('.$_aother.')\/?/', $_SERVER['REQUEST_URI'])) {
    $response = $http->run();
} else {
    //设置指定应用
    $response = $http->name($_amain)->run();
}

假设之前路径为

http://aaa.com/index/b.html

应用此法后可简化为

http://aaa.com/b.html

    相关文章

    织音云上新香港Platinum 8358处理器性能怪兽,爆炸高配折后最低仅需32元/月,数据对标物理机
    2025年华纳云新年焕新季,香港云4H4G3M特惠696元/年,E5物理服务器688元/月起
    莱卡云:2025年1月香港云服务器、美国云服务器、日本云服务器促销活动
    ThinkPHP6多应用多语言切换,最佳解决方案
    thinkphp thinkphp6 安装JWT
    php使用ip-api根据ip地扯获取位置信息

    发布评论