我的Laravel應用程序在私人文件夾中工作,我需要告訴Laravel公共路徑不同。 今天我已經將Laravel應用程序從4.2升級到5.0,並且我無法找到我們指定公共路徑since the paths.php file doesn't exist anymore in Laravel 5.0的位置。指定不同的公共路徑
在laravel 4.2,我們有/bootstrap/paths.php
文件:
/*
|--------------------------------------------------------------------------
| Public Path
|--------------------------------------------------------------------------
|
| The public path contains the assets for your web application, such as
| your JavaScript and CSS files, and also contains the primary entry
| point for web requests into these applications from the outside.
|
*/
'public' => __DIR__.'/../../../public_html',
我不與Laravel 5.0文件夾結構中使用的是,任何幫助,將不勝感激。
您可以嘗試製作您自己的助手類,並根據您的喜好重寫'public_path'函數並重命名public fulder – manix 2015-02-10 14:23:19
您能舉個例子嗎?這個解決方案看起來有點棘手,我一直認爲Laravel已經適用於各種類型的託管環境,如果不是這種情況,它會令人失望。 – roastedtoast 2015-02-10 14:27:12
最佳解決方案是選定的答案。請花一分鐘閱讀它及其評論,並儘量不要使用無用的類來重載您的應用程序。 – roastedtoast 2015-11-15 22:35:42