nginx常用配置 发表于 2018-07-25 | 分类于 nginx | 阅读次数: 本文字数: 537 | 阅读时长 ≈ 1 分钟 nginx 教程 nginx伪静态规则 隐藏html文件后缀1234567# 文件不存在时访问.html文件location / { if (!-e $request_filename) { rewrite ^(.*)$ /$1.html last; break; }} 开启gzip123456789gzip on;gzip_min_length 2k;gzip_buffers 4 16k;gzip_http_version 1.1;gzip_comp_level 6;gzip_types text/plain application/javascript application/x-javascript image/jpeg image/gif image/png text/javascript text/css application/xml;gzip_vary on;gzip_proxied expired no-cache no-store private auth;gzip_disable "MSIE [1-6]\."; 您的支持将鼓励我继续创作! 打赏 支付宝 本文作者: xiaosl 本文链接: https://lijiangwei.github.io/2018/07/25/nginx-tutorial/ 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!