LoginSignup
5
5

More than 5 years have passed since last update.

.envのAPP_DEBUG=falseが効かない場合の対処法

Last updated at Posted at 2018-05-15

現象

Laravelベースのアプリでデバッグモードが解除できなくなった。
.envファイルの「APP_DEBUG」を「false」にしているのに、ブラウザで見るとデバッグモードになっている。

解決方法

キャッシュをクリアする。

php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear

参考にしたページ

ありがとうございます。
https://qiita.com/Ping/items/10ada8d069e13d729701

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5