由於 Laravel 有用到特定的 PHP 功能,所以開發時必須要注意到使用的環境及相關的設定。
Laravel 目錄中的 app/storage 目錄必須讓伺服器有存取權限。
可以下指令設定
chmod -R 755 app/storage
或比較安全的做法
chown -R apache:apache app/storage
只針對 apache 使用者/群組做存取授權。
Laravel 框架內含 public/.htaccess 檔案,可以讓網址不要出現像是 index.php 等的結尾。如果你使用 Apache 伺服器,記得必須開啟 mod_rewrite 模組。