"라라벨 https 리다이렉트 미들웨어"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(다른 사용자 한 명의 중간 판 2개는 보이지 않습니다)
3번째 줄: 3번째 줄:


{{소스헤더|app/Http/Middleware/ForceHttps.php}}
{{소스헤더|app/Http/Middleware/ForceHttps.php}}
<source lang='php'>
<syntaxhighlight lang='php'>
namespace App\Http\Middleware;
namespace App\Http\Middleware;


17번째 줄: 17번째 줄:
}
}
}
}
</source>
</syntaxhighlight>


{{소스헤더|app/Http/Middleware/ForceHttps.php}}
{{소스헤더|app/Http/Middleware/ForceHttps.php}}
<source lang='php'>
<syntaxhighlight lang='php'>
...
...
class Kernel extends HttpKernel
class Kernel extends HttpKernel
30번째 줄: 30번째 줄:
     ];
     ];
}
}
</source>
</syntaxhighlight>


{{소스헤더|routes/web.php}}
{{소스헤더|routes/web.php}}
<source lang='php'>
<syntaxhighlight lang='php'>
Route::get('login','LoginController@index')->middleware('https');
Route::get('login','LoginController@index')->middleware('https');
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[Laravel 미들웨어]]
* [[Laravel 미들웨어]]
* [[라라벨 redirect()]]
* [[Varnish X-Forwarded-Proto 설정]]


==참고==
==참고==

2020년 11월 2일 (월) 02:58 기준 최신판

1 개요[ | ]

라라벨 https 리다이렉트 미들웨어
app/Http/Middleware/ForceHttps.php
namespace App\Http\Middleware;

use Closure;

class ForceHttps
{
	public function handle($request, Closure $next) {
		if ( $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'http' ) {
			return redirect()->secure($request->getRequestUri());
		}
		return $next($request);
	}
}
app/Http/Middleware/ForceHttps.php
...
class Kernel extends HttpKernel
{
    ...
    protected $routeMiddleware = [
        'https' => \App\Http\Middleware\ForceHttps::class,
        ...
    ];
}
routes/web.php
Route::get('login','LoginController@index')->middleware('https');

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}