小皮面板 nginx环境伪静态

小皮面板 nginx环境伪静态

 

配置 laravel伪静态

# Check if a file exists, or route it to index.php.
try_files $uri $uri/ /exploit/index.php?$query_string;
if (!-e $request_filename) {
    rewrite  ^(.*)$  /index.php?s=$1  last;
    break;
}

配置tp的伪静态

if 这里必须得有空格
location / { 
    if (!-e $request_filename){
        rewrite ^(.*)$ /index.php?s=/$1 last;
        break;
    }
}

 

posted @ 2025-05-29 21:17  piwenfei  阅读(186)  评论(0)    收藏  举报