美文网首页
nginx 配置默认跳转

nginx 配置默认跳转

作者: 瓢鳍小虾虎 | 来源:发表于2020-06-24 14:40 被阅读0次

location / {

            rewrite / /report;

        }

        location /report{

            alias  /usr/share/nginx/html/application/;

            index  report.html;

            if ($request_filename ~* .*\.(?:htm|html)$) {

                add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";

            }

            if ($request_filename ~* .*\.(?:js|css)$) {

                expires      7d;

            }

            if ($request_filename ~* .*\.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm)$) {

                expires      7d;

            }

        }

相关文章

网友评论

      本文标题:nginx 配置默认跳转

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