CRMEB/nginx.conf
2018-12-31 13:39:11 +08:00

5 lines
97 B
Nginx Configuration File

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