我使用最新版本的laravel 5.2,我想在HTTPS
协议上运行漏洞应用
我从搜索中发现的是:
filter.php
版本我想在我的应用程序中实现https,最好的方法是什么? 我会感谢您的详细解答。
注意:在本地主机上开发,使用XAMP,Windows 10。
答案 0 :(得分:1)
您可以使用middleware:
class HttpsMiddleware {
public function handle($request, Closure $next)
{
if ( ! $request->secure() && app()->environment() === 'production') {
return redirect()->secure($request->path());
}
return $next($request);
}
}