由於託管提供者的預設根目錄,許多使用者在使用 Laravel 應用程式時遇到了挑戰。本文提供了將 Laravel 應用程式的公共資料夾重新導向至自訂位置的解決方案,例如共用主機的 public_html 目錄。
方法1:修改Index.php 檔案
在應用程式的index.php 檔案中,在「$app = …;」之前加入以下行語句:
// set the public path to this directory $app->bind('path.public', function() { return __DIR__; });
此程式碼將公共路徑綁定到目前目錄,有效地使您的託管的public_html 目錄成為Laravel 公共資料夾。
方法2:使用AppServiceProvider
根據Burak Erdem 的建議,更理想的方法是在register() 中設定公共路徑AppProvidersAppServiceProvider 類別的方法:
/** * Register any application services. * * @return void */ public function register() { // ... $this->app->bind('path.public', function() { return base_path('public_html'); }); }
此方法可讓您指定public_html目錄中的特定子目錄作為自訂公用資料夾。只需將 'public_html' 替換為所需的子目錄。
透過實作這兩種方法之一,您可以在使用 public_html 作為預設根目錄的共用託管環境中成功使用 Laravel 應用程式。
以上是如何自訂共用主機上的 Laravel 公用資料夾位置?的詳細內容。更多資訊請關注PHP中文網其他相關文章!