nignx开启expires后相关资源不显示的问题

时间:2023-12-28 20:22:20

expires可以指定浏览器缓存,加快浏览速度

但是开启expires必须先指定root

server中原来指定

location / {

root D:/WWW;
index index.html index.htm default.html default.htm index.php default.php app.php u.php;
}

include expires.conf;

改为

root D:/WWW;
location / {
index index.html index.htm default.html default.htm index.php default.php app.php u.php;
}

include expires.conf;

即可

另附上expires.conf文件内容

location ~ .*\.(jpg|jpeg|gif|png|bmp|ico|swf)$ {
expires 4h;
access_log off;
}
location ~ .*\.(js|css)$ {
expires 1d;
access_log off;
}