Answers for "force https laravel 8 not working"

PHP
2

laravel ever over https

//Place this in the AppServiceProvider in the boot() method
if($this->app->environment('production')) {
    URL::forceScheme('https');
}
Posted by: Guest on January-05-2022
1

force https redirection laravel

// app/Providers/AppServiceProvider.php
URL::forceScheme('https');
Posted by: Guest on June-21-2021

Code answers related to "force https laravel 8 not working"

Browse Popular Code Answers by Language