gpt4 book ai didi

php - Laravel:表单中的 HTTPS::open()

转载 作者:可可西里 更新时间:2023-11-01 12:51:25 25 4
gpt4 key购买 nike

我在登录时为我的网站 (Cloudflare HTTPS) 使用 SSL,因为我使用 ``,Laravel 不会将我的网站链接转换为 SSL 版本,它显示 http 版本。我如何强制 Laravel 为我使用 https

例如:

<?=Form::open(array('id' =>'submit'))?>

. . .

<?=Form::close()?>

结果将是:

<form method="POST" action="http://example.com" accept-charset="UTF-8" id="submit">

</form>

我希望 action 成为一个 HTTPS 链接。

最佳答案

如果您想使用 https,您需要手动提供将设置为操作的路径。

你需要这样使用URL::to:

<?=Form::open(array('url' => URL::to('/', array(), true), 'id' =>'submit' ))?>

提交到 / url(相当于 example.com)并作为第三个参数 true 传递以确保安全

关于php - Laravel:表单中的 HTTPS::open(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26427443/

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