3

I have this error one production env. only on some routes, I see no difference between the routes that works and the few of them that don't work. All my routes are in web.php, and in front I try to access via Vuejs/Axios. Also, the both url from error when I try to access them I get to https://, even if I try http:// , I get redirect to https.

What I tried till now.

.env

APP_URL=https://my.url

web.php

URL::forceScheme('https');  //at the top of the file

App/Providers/AppServiceProvider

public function boot()
{
    URL::forceScheme('https');
}

Also:

composer dump-autoload
php artisan cache:clear
php artisan config:clear
php artisan view:clear
php artisan route:clear
php artisan config:cache
npm run prod
Beusebiu
  • 1,433
  • 4
  • 23
  • 68

1 Answers1

0

I found a strange solution.

I changed the route name from random_question to random, also the controller method name that was show to random and works.

Beusebiu
  • 1,433
  • 4
  • 23
  • 68