我使用Laravel框架。如你所知,它的目錄看起來是這樣的:如何在Laravel中以root身份製作公用文件夾?
要打開我的網站(Route::get('/', '[email protected]');
)的主頁我需要打開目錄的/public
文件夾中。換句話說,看到我的網站的第一頁,這裏是網址:
http://example.com/public
反正只有我的域名(http://example.com/
)不是我的根。我如何以root身份製作/public
文件夾?
確實我找到了解決方法。我可以在根上創建index.php
並將重定向代碼寫入/public
文件夾。所以當用戶輸入http://example.com/
時,它會自動重定向到http://example.com/public
。但這仍然很難看。我不喜歡在網址中看到/public
。任何建議?
的可能的複製[Laravel 5 - 從URL刪除公共](HTTP:/ /stackoverflow.com/questions/28364496/laravel-5-remove-public-from-url) –
你的FTP上的目錄結構是什麼?像「domains/domain.com/public_html」? –