“Mieszana treść heroku laravel” Kod odpowiedzi

Laravel Błąd mieszanej zawartości

When changing from http to https, it's possible to get the problem Mixed content issue - Content must be served as HTTPS.

So, first modify APP_URL in the .env file, if we use the assets helper, this shouldn't give any problem with the URL.

APP_URL=https://mydomain.com

Finally, add the following to the beginning of api.php or web.php:

if (App::environment('production')) {
    URL::forceScheme('https');
}
Cautious Constrictor

Mieszana treść heroku laravel

for laravel, thus should be added to your AppServiceProvider file, founded in your App/Provider/AppServiceProvider directory of your laravel foldert
Delightful Deer

Odpowiedzi podobne do “Mieszana treść heroku laravel”

Pytania podobne do “Mieszana treść heroku laravel”

Więcej pokrewnych odpowiedzi na “Mieszana treść heroku laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu