php

PHP伪静态设置关闭状态

发布于 2025-09-08 16:30:46 浏览 14 次

location ~* (runtime|application)/{

return 403;

}
location / {

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

}

0 条评论

发布
问题