前台Home/Photo/index
后台Admin/Photo/index
然后开启缓存:
'HTML_CACHE_ON' => true,
'HTML_CACHE_RULES' => array(
//'photo:index' => array('{:group}/{:module}/{:action}'),
),
然后前台文件缓存了,去后台访问,后台Photo/index页面也缓存了,如何让后台文件不缓存!
然后我试了加上项组分组名称可是就不能缓存了:
'HTML_CACHE_ON' => true,
'HTML_CACHE_RULES' => array(
//'home:photo:index' => array('{:group}/{:module}/{:action}'),
'message:index' => array('{:group}/{:module}/{:action}',0),
),
求解答!
最佳答案