1. 编辑虚拟主机配置文件/usr/local/nginx/conf/vhosts/huangzhenping.conf
说明:采用location方式
1
2
3
4
5
6
7
8
9
10
|
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
access_log off;
expires 1d;
}
location ~ \.(js|css)
{
access_log off;
expires 1d;
}
|
2. 检查配置文件,重新加载,测试
说明:google浏览器可以按F12,查看开发者工具或者用curl测试
/usr/local/nginx/sbin/nginx -t
/usr/local/nginx/sbin/nginx -s reload
curl -x127.0.0.1:80 http://www.huanglearn.cn/static/image/smiley/default/mad.gif -I
本文转自 huangzp168 51CTO博客,原文链接:http://blog.51cto.com/huangzp/1900639,如需转载请自行联系原作者