路由地址中的#
去掉后,项目刷新404问题
路由模式为:
mode: 'history', //去掉url中的#
location / {
root html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
#项目名称 解决刷新404
location /projectName/ {
root html;
index index.html index.htm;
try_files $uri $uri/ /projectName/index.html;
}
反向代理
nginx奇怪问题 - 停止服务器,客户端依然可以请求到接口并且获取到数据
nginx配置,nginx.conf配置如下内容。
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$ {
#禁止缓存,每次都从服务器请求
add_header Cache-Control no-store;
}
网友评论