我该如何解决symfony中使用esi的问题?

时间:2019-04-19 06:47:58

标签: php symfony esi

我关注了文档(https://symfony.com/doc/current/http_cache/esi.html

<!DOCTYPE html>
<html>
    <body>
        <!-- ... some content -->

        <!-- Embed the content of another page here -->
        <esi:include src="http://..."/>

        <!-- ... more content -->
    </body>
</html>

并设置了配置。

# config/packages/framework.yaml
framework:
    # ...
    esi: { enabled: true }

chrome中的结果在文档中显示相同的html代码

<esi:include src="http://www.test.com"/>,

但是实际上,它从来没有像预期的那样发送get-type请求!

怎么了? 我尝试过render_esi,但是render_esi无法发送自定义参数,我需要的esi请求是<esi:include src="http://www.test.com/a/b?c=c1"/>

谁可以帮助我?

0 个答案:

没有答案