WebEnh

.net7 mvc jquery bootstrap json 学习中 第一次学PHP,正在研究中。自学进行时... ... 我的博客 https://enhweb.github.io/ 不错的皮肤:darkgreentrip,iMetro_HD
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

linux server Vue 或其它单页面项目站点 nginx 实施部署

Posted on 2024-01-02 11:26  WebEnh  阅读(15)  评论(0编辑  收藏  举报
 # nginx vue 处理前台路由 history 模式刷新 404 的问题
    location / {
      try_files $uri $uri/ /index.html;
      if ($uri ~* .*\.(?:htm|html)$) {
        add_header Cache-Control "no-store, no-cache";
        add_header Pragma "no-cache";
      }
 
      if ($uri ~* .*\.(?:js|css|jpg|jpeg|gif|png|ico|cur|gz|ttf|woff|ico|svg|svgz|mp4|ogg|ogv|webm)$) {
        expires 7d;
        access_log off;
        add_header Cache-Control "public";
      }
      index  index.html index.htm;
    }