CRMEB/nginx.conf
2019-09-16 18:16:19 +08:00

5 lines
97 B
Nginx Configuration File

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