在宝塔nginx管理-配置修改中,找到如下内容:
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /\.
{
deny all;
}
添加以下代码
location ~ .*\.(php|php5)?$
{
add_header Cache-Control no-cache;
}
没有回复内容