如果你想要缓存后端服务器404状态的对象,在你当前的VCL文件的vcl_backend_response区域内增加
#Cache 404 for short peruid if time if ( beresp.status == 404 ) { set beresp.ttl = 120s; return (deliver); }
你可以修改120s成为任何你想要缓存的时间.
我缓存404对象120秒,来减轻后端服务器的压力.
It's dangerous to go alone! Take this.
如果你想要缓存后端服务器404状态的对象,在你当前的VCL文件的vcl_backend_response区域内增加
#Cache 404 for short peruid if time if ( beresp.status == 404 ) { set beresp.ttl = 120s; return (deliver); }
你可以修改120s成为任何你想要缓存的时间.
我缓存404对象120秒,来减轻后端服务器的压力.
各位朋友,大家好。
本站刚更新了固定链接的规则,之前的规则
/%yeay%/%month%/%postid%.html (例如 /2016/08/178.html)
更换为
/archives/%postid%.html (例如 /archives/178.html)
Nginx的301跳转已经设置好了,如果你还是遇到打开的页面出现404的问题,请尝试手工替换连接.