nginx 二级目录高级写法

无人久伴 提交于 2019-12-09 17:28:34
nginx二级目录高级配置:

location ~ .*\.(html)$ {
        expires 1m;
        error_page 404 = /test/index.html;
        access_log  /data/log/test.access.log main;
}
location ~ .*\.(js|css|gif|jpg|jpeg|png|bmp|swf|svg|ico|wav|mp3|txt|WAV|json)?$ {
        expires 1m;
        error_page 404 = /test/index.html;
}

location ~ .*\.(html)$ {
        expires 1m;
        error_page 404 = /test/index.html;
        access_log  /data/log/test.access.log main;
}
location ~ .*\.(js|css|gif|jpg|jpeg|png|bmp|swf|svg|ico|wav|mp3|txt|WAV|json)?$ {
        expires 1m;
        error_page 404 = /test1/index.html;
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!