首頁 > 後端開發 > php教程 > 為什麼我的 Laravel 網站在將 Apache 升級到 2.4 並將 PHP 升級到 5.5.7 後顯示空白畫面?

為什麼我的 Laravel 網站在將 Apache 升級到 2.4 並將 PHP 升級到 5.5.7 後顯示空白畫面?

Linda Hamilton
發布: 2024-10-28 06:11:30
原創
448 人瀏覽過

Why is my Laravel site showing a blank white screen after upgrading Apache to 2.4 and PHP to 5.5.7?

Apache 升級後,Laravel 網站顯示空白畫面

在升級到Apache 2.4 和PHP 5.5.7 之前,我的Laravel 網站運作正常。但是,我現在在訪問 laravel.mydomain.example 時遇到空白畫面。 Apache 錯誤日誌中沒有記錄任何錯誤。路由和配置應該與之前一樣正確。

Apache 設定

確保 .htaccess 檔案正確解析。在 /var/sites/laravel/public/.htaccess 中插入無效行應該會導致 500 錯誤,表示 .htaccess 正在載入。驗證.htaccess 檔案中的以下設定:

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

RewriteEngine On

# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ / [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
The virtual host directive should also be configured correctly:
登入後複製

DocumentRoot "/var/sites/laravel/public"
ServerName laravel.mydomain.example

AllowOverride All
allow from all
Options +Indexes
Require all granted
登入後複製


目錄>

Laravel 設定

日誌檔權限:

升級Laravel 4.1 及更高版本如果日誌檔案無法寫入指定位置,可能會遇到白屏錯誤。確保 Apache 使用者可寫入 app/storage 目錄(群組可寫入或全域可寫入)。

Web 伺服器使用者:

確定執行 PHP 的使用者在您的伺服器上。在 Ubuntu/Debian 上可能是“www-data”,在 CentOS/RedHat/Fedora 上可能是“apache”。

檔案擁有權:

將適當的所有權分配給PHP 使用者:
# Debian/Ubuntu
$ sudo chown -R www-data /path/to/laravel/files

# CentOS/RedHat/Fedora
$ sudo chown -R apache /path/to/laravel/files
**File Permissions:** Set the app/storage directory permissions accordingly:
登入後複製

群組可寫(群組、使用者可寫)

$ sudo chmod -R gu w app/storage

世界可寫(群組、使用者、其他可寫)


$ sudo chmod -R guo w app/storage

對於Laravel 5 和6 ,將這些權限應用於storage 和bootstrap/cache 目錄:
# Group Writable (Group, User Writable)
$ sudo chmod -R gu+w storage
$ sudo chmod -R gu+w bootstrap/cache

# World-writable (Group, User, Other Writable)
$ sudo chmod -R guo+w storage
$ sudo chmod -R guo+w bootstrap/cache
登入後複製

以上是為什麼我的 Laravel 網站在將 Apache 升級到 2.4 並將 PHP 升級到 5.5.7 後顯示空白畫面?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板