Apache伪静态转Nginx,帮忙转下,谢谢,小白不会
Apache伪静态转Nginx,帮忙转下,谢谢,小白不会
rewrite ^/(.*)\.xml$ /sitemap.php;
if (!-e $request_filename){
rewrite ^/(.*)$ /index6.php?id1=$1;
}
location ~ \.(txt)$ {
deny all;
}
----------------------------
rewrite ^/(.*).xml$ /sitemap.php?id=$1;
if (!-e $request_filename){
rewrite ^(.*)$ /404.php;
}
宝塔和其他伪静态转换啥的 都不行
rewrite ^/(.*)\.xml$ /sitemap.php;
if (!-e $request_filename){
rewrite ^/(.*)$ /index6.php?id1=$1;
}
location ~ \.(txt)$ {
deny all;
}
----------------------------
rewrite ^/(.*).xml$ /sitemap.php?id=$1;
if (!-e $request_filename){
rewrite ^(.*)$ /404.php;
}
宝塔和其他伪静态转换啥的 都不行