CRMEB/public/nginx.conf
2018-09-17 09:01:50 +08:00

5 lines
97 B
Nginx Configuration File

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