CRMEB/readme/nginx.conf
2021-07-13 16:49:21 +08:00

5 lines
97 B
Nginx Configuration File

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