CRMEB/nginx.htaccess
2020-07-04 11:34:56 +08:00

6 lines
108 B
Plaintext

location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}