标签: nginx

1 篇文章

nginx 反向代理到路径时自动添加路径下的 index.html
在设置反向代理静态网站时,当网页在路径目录下 nginx 不会自索引 index.html (例:http://localhost/123)并返回 404,解决方法添加下方代码到指定位置,访问会自动索引路径下的html location / { rewrite ^(.*)/$ $1/index.html break; rewrite ^(.*/&#…