How to debug Laravel error 500 with no logs, no information

后端 未结 5 1210
执念已碎
执念已碎 2021-02-07 13:37

I\'m working on an existing Laravel application in order to develop new feature but after installing the app on my computer, I have an error 500 and no clue to resolve it.

5条回答
  •  北恋
    北恋 (楼主)
    2021-02-07 14:33

    Check your .htaccess file in your public folder! - This hot-fix is host dependent!!!

    Change line from:

    RewriteRule ^ index.php [L]
    

    To:

    RewriteRule ^ /index.php [L]
    

提交回复
热议问题