fastadmin nginx 伪静态规则

2022-11-28 13:17:29 浏览数 (1)

代码语言:javascript复制
location ~* (runtime|application)/{
    return 403;
}
location / {
    if (!-e $request_filename){
        rewrite  ^(.*)$  /index.php?s=$1  last;   break;
    }
}

0 人点赞