0%

nginx web page 404

nginx web page 404

1
2
3
4
5
6
7
location / {
root /file_path;
index index.html index.htm;
try_files $uri $uri/ @rewrites;
}
location @rewrites {rewrite ^(.+)$ /index/index.html last;}