Files
code/public/nginx.htaccess

7 lines
175 B
Plaintext
Raw Permalink Normal View History

2026-01-28 10:16:06 +08:00
try_files $uri $uri/ /index.php?$args; #去掉index.php
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}