阿里云虚拟主机实现Thinkphp6的伪静态规则
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}
location ~ /\.ht {
deny all;
}
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}
location ~ /\.ht {
deny all;
}