首页/技术代码/ 苹果CMS V10 伪静态设置隐藏index.php

苹果CMS V10 伪静态设置隐藏index.php

作者:神奇   分类:技术代码   时间:2019-12-21 21:35:05  标签:


如果使用Nginx的话 可以将伪静态规则改成

location / {
if (!-e $request_filename) {
        rewrite ^/index.php(.*)$ /index.php?s=$1 last;
        rewrite ^/admin.php(.*)$ /admin.php?s=$1 last;
        rewrite ^/api.php(.*)$ /api.php?s=$1 last;
        rewrite ^(.*)$ /index.php?s=$1 last;
        break;
        }
     }

温馨提示如有转载或引用以上内容之必要,敬请将本文链接作为出处标注,谢谢合作!

评论:

发表评论:

code