TYPO3 does not cache the page

2019-08-01 01:47发布

My TYPO3 6.2.31 page has everywhere enabled caching ... But when I call the Page and look in admin panel ..

enter image description here

enter image description here

My typoscript looks like this:

config {
doctype = html5 
renderCharset = utf-8
metaCharset = utf-8
prefixLocalAnchors = all
simulateStaticDocuments = 0
tx_realurl_enable = 1
absRefPrefix = /  
  #CACHE AND INDEX
no_cache = 0
no_search = 0
index_enable = 1
index_externals = 1

what could be the problem for not caching my site?

2条回答
做个烂人
2楼-- · 2019-08-01 02:21

prefixLocalAnchors causes the page to be not cached! Set prefixLocalAnchors = 0

查看更多
冷血范
3楼-- · 2019-08-01 02:27

There are a lot of things which incluence if a page is cached or not:

  • an extension
  • TS like page.config.no_cache = 1
  • disable caching in the page properties

and I guess some more as well.

查看更多
登录 后发表回答