tp5 基础nginx伪静态

location ~* (runtime|application)/{
return 403;
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}

posted @ 2025-10-02 03:38  风意不止  阅读(7)  评论(0)    收藏  举报