我刚刚设置了清漆,并且在投入生产之前我已经在端口 8080 上做了一些测试。
我注意到,如果我在缓存页面上:
/**
* @Cache(smaxage="10800")
* @Route("/{_locale}/", name="homepage2", requirements={"_locale" = "en|fr"})
* @Template()
*/
public function indexAction()
{
return array();
}
我尝试通过包含的组件登录(不使用外部服务,但使用正常登录)ESI
{% render "GamerCertifiedHomeBundle:Home:login" with {}, { 'standalone': true } %}
它最终将我重定向到一个没有样式且没有 URL 的页面上...:8080/_internal/secure/MyBundleHomeBundle:Home:login/none.html
如果我回到主页,我已经登录了。
请问我该如何避免呢?
编辑 :