我正在使用Laravel 5.2.以下是我的一个视图(刀片)文件中url()用法的一个示例: form class="form-horizontal" role="form" method="POST" action="{{ url('/register') }}"..../form 它返回非https网址,如: http://www.e
<form class="form-horizontal" role="form" method="POST" action="{{ url('/register') }}"> .. .. </form>
它返回非https网址,如:
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网址呢?
谢谢.
你可以简单地使用secure_url()代替url()<form class="form-horizontal" role="form" method="POST" action="{{ secure_url('/register') }}"> .. .. </form>