我在查询中使用->paginate(20);
函数,但唯一的问题是它将返回http而不是https
例如:"next_page_url":"http://www.mysite"
我试图通过在AppServiceProvider中添加这个来强制我的应用使用https
public function boot()
{
if (!\App::environment('local')) {
\URL::forceSchema('https');
}
}
那么我可以强制Laravel返回https中的所有链接吗?
答案 0 :(得分:1)
我通过在分页器上设置路径使其工作:
Laravel 5.1+:
$results->paginate();
$results->setPath(''); // Will return ?page=2
// OR
$results->setPath(config('app.url')); // Will return website URL defined in .env file + ?page=
在 Laravel 5.1 之前:
$results->paginate();
$results->setBaseUrl('https://' . Request::getHttpHost() . '/' . Request::path());
我不认为它是最好的解决方案,但解决了我的问题。