简介:
伪静态
location / {
index index.PHP index.HTML index.htm;
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.PHP?s=$1;
}
}
location /api/ {
index index.php index.HTML index.htm;
if (!-e $request_filename)
{
rewrite ^/api/(.*)$ /api/index.php?s=$1;
}
}
location ~* /upload/.+.(html|php)$ {
return 404;
}
location ~* ^/plugins/.+.(html|php)$ {
return 404;
}
location ~* /themes/.+.(html|php)$ {
return 404;
}
图片:




资源下载
下载价格免费


评论0