Level 3
What domain are you using for local development?
It might be that Chrome now forces HTTPS for all .dev domains:
https://laravel-news.com/chrome-63-now-forces-dev-domains-https
2 likes
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have set redirect solution in my AppServiceProvider.php file
if (!\App::environment('local')) {
\URL::forceScheme('https');
}
But now if I run php artisan config:cache, all environments are forcing https? What is causing this behavior?
Please or to participate in this conversation.