Larvel: Cloudflare 유연한 SSL에 HTTPS를 강제로 사용하는 URL
솔루션:
App\Providers\AppServiceProvider를 편집합니다.boot () 방법의 php
public function boot()
{
// custom for cloudflase flexible ssl
if($this->checkHTTPSStatus()){
URL::forceScheme('https');
}
/*...some other code...*/
}
개인 함수 checkHTPSStatus(){
/다음 옵션에서 코드 선택/
}
Option 1: Switch to https according to the configuration in the env file
개인 함수 checkHTPSStatus(){
return env('APP_HTTPS',false)==true;
}
In .env file you must to declare APP_HTTPS parameter
APP_HTTPS=true
Option 2: Automatically switch to https if the user comes from Cloudflare Flexible SSL
개인 함수 checkHTPSStatus(){
(isset($서버 ['HTTP X 전송하는 프로토콜]]])과 &$서버 ['HTTP X 전송하는 프로토콜]]='https')를 되돌려줍니다.
}
Option 3: Full SSL
개인 함수 checkHTPSStatus(){
돌아오다비어 있음($서버 ['HTTPS']);
}
Reference
이 문제에 관하여(Larvel: Cloudflare 유연한 SSL에 HTTPS를 강제로 사용하는 URL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/genaker/laravel-force-to-use-https-for-url-with-cloudflare-flexible-ssl-55j텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)