加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.htaccess 698 Bytes
一键复制 编辑 原始数据 按行查看 历史
17634547884 提交于 2022-05-10 09:39 . 1
# 设置cache_uri变量
set $cache_uri $request_uri;
set $index_file 'index.html';
# 带有查询字符串的POST请求应该走PHP
if ($request_method = POST) {
set $cache_uri 'null cache';
}
if ($query_string != "") {
set $cache_uri 'null cache';
}
# 不给已登录或已回复的用户展示缓存
if ($http_cookie ~* "username|name") {
set $cache_uri 'null cache';
}
location / {
# 如果存在缓存文件直接返回文件
if (-f $request_filename) {
break;
}
# 在存在缓存文件的情况下展示缓存,其他请求交给php处理
try_files /zb_users/cache/FastCache/$cache_uri/$index_file $uri $uri/ /index.php?$args ;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化