我想从我的控制器函数返回一个带有https
或http
取决于变量的视图。我不想使用redirect
它,我只想使用https
或运行。可能吗?http
View::make()
Response::view()
例子:
public function getSiteContent($https = false)
{
if($https===true){
//return to secure https url
return View::make('sites.content');
}
else{
//return to http url
return View::make('sites.content');
}
}