gpt4 book ai didi

Laravel 5.2 : url() function to return "https" urls?

转载 作者:行者123 更新时间:2023-12-01 09:51:44 25 4
gpt4 key购买 nike

我正在使用 Laravel 5.2 .以下是 url() 的一个例子在我的 View ( Blade )文件之一中的用法:

<form class="form-horizontal" role="form" method="POST" action="{{ url('/register') }}">
..
..
</form>

它返回非 https url,如: http://www.example.com/register
我需要它是 HTTPS。我已经在我的网站上使用了有效的 HTTPS。

在我的 .env文件,它已经是: APP_URL=https://www.example.com
在我的 config/app.php ,它已经是: 'url' => env('APP_URL', 'https://www.example.com'),
所以 我还需要为 LV 5.2 配置什么?通过 url() 返回 HTTPS 网址辅助函数请?

谢谢你。

最佳答案

而不是 url()您可以简单地使用 secure_url()

<form class="form-horizontal" role="form" method="POST" action="{{ secure_url('/register') }}">
..
..
</form>

关于Laravel 5.2 : url() function to return "https" urls?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36400609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com