Symfony3-重定向301 https-> http-> https

时间:2018-06-20 10:39:47

标签: symfony redirect

我在symfony中遇到重定向301的问题。

我的routing.yml

homepage-301:
    path: /old-homepage
    defaults:
        _controller: FrameworkBundle:Redirect:urlRedirect
        path: /homepage
        permanent: true

跟踪: enter image description here

为什么重定向到架构HTTP?

但是我想要

https://www.exmaple/old-homepage https://www.example/homepage

1 个答案:

答案 0 :(得分:1)

您可以尝试:

homepage-301:
    path: /old-homepage
    defaults:
        _controller: FrameworkBundle:Redirect:urlRedirect
        path: /homepage
        permanent: true
    schemes:  [https]
相关问题