How to force HTTPS in Laravel
Ishaan Sheikh

Ishaan Sheikh @frikishaan

About: Software Engineer 💻

Location:
India
Joined:
Apr 4, 2020

How to force HTTPS in Laravel

Publish Date: Apr 20 '22
12 0

To force your website to load with HTTPS in Laravel you can add the following code in your route/web.php file.


<?php

use Illuminate\Support\Facades\URL;

if(app()->environment('production')){
    URL::forceScheme('https');
}

....
// Your routes here

Enter fullscreen mode Exit fullscreen mode

It is a one of doing it, of course there are other ways to do so. You can add one in the comments below.

Comments 0 total

    Add comment