美文网首页
nginx不同需求下的配置nginx.conf

nginx不同需求下的配置nginx.conf

作者: 背着生活往前走你才辨的出美和丑 | 来源:发表于2020-12-22 11:22 被阅读0次

路由地址中的#去掉后,项目刷新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;
}

相关文章

网友评论

      本文标题:nginx不同需求下的配置nginx.conf

      本文链接:https://www.haomeiwen.com/subject/suiagktx.html