Skip to content

Instantly share code, notes, and snippets.

@maldechavda
Created July 6, 2017 11:29
Show Gist options
  • Select an option

  • Save maldechavda/09bcfdbb7e44f8dec74e01637a00e43a to your computer and use it in GitHub Desktop.

Select an option

Save maldechavda/09bcfdbb7e44f8dec74e01637a00e43a to your computer and use it in GitHub Desktop.
Laravel force redirect to https using Middleware
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\RedirectResponse;
class ForceHttps
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if(app()->environment('production') && ! $request->secure()) {
return redirect()->secure($request->path());
}
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment