Symfony2 Twig url() https

发布于 2024-12-21 15:47:05 字数 213 浏览 1 评论 0原文

我需要生成一个使用安全 HTTP 协议的绝对 URL,因为它是第三方支付网关解决方案使用的支付页面模板,要求页面上的每个元素都指向或来自 HTTPS 链接。现在,我无法找到如何使用 Twig url() 函数生成安全 URL。您在数组中添加到函数中的任何内容都被视为 GET 参数,该参数将以 ?x=y 的方式附加在 URL 的末尾。

如何使用 Twig url() 函数生成 HTTPS URL?

I need to generate an absolute URL that will use the secure HTTP protocol since it's a payment page template used by a third party payment gateway solution that requires every single element on the page to point to or to come from an HTTPS link. Now, I can't for the life of me find how to use the Twig url() function to generate a secure URL. Anything you add to the function in an array is considered a GET parameter that will be appended at the end of the URL in a ?x=y manner.

How can I generate an HTTPS URL using the Twig url() function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぃ双果 2024-12-28 15:47:05

twig 生成的 URL 由您的路由配置决定。您需要将路由设置为需要 https。

requirements:
    _scheme:  https

您可以在这里阅读更多相关信息:
http://symfony.com/doc/2.0/cookbook/routing/scheme.html

The URLs generated by twig are determined by your routing configuration. You need to set the route to require https.

requirements:
    _scheme:  https

You can read more about it here:
http://symfony.com/doc/2.0/cookbook/routing/scheme.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文