CRMEB/nginx.conf
2018-08-22 17:35:12 +08:00

5 lines
97 B
Nginx Configuration File

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