请教如何获取fastcgi缓存的key


nginx.conf中设置的fastcgi缓存的key如下


 fastcgi_cache_key $request_method://$host$request_uri;

举例,有这么一个URL

http://levi.cg.am/archives/3066

请问如何用PHP得到缓存的文件名称

备注:

  1. 这么做的目的是要清除某一个页面的nginx缓存
  2. 我试过这么写,但是不对

    md5(' http://levi.cg.am/archives/3066 ');

页面缓存 nginx php

Chicara 10 years, 8 months ago

用echo 模块调试变量

奈何de彼岸 answered 10 years, 8 months ago

Your Answer