根目錄的中的.htaccess設定為
<IfModule mod_rewrite.c>
RewriteEngine On
# 確保請求不是已經指向實際文件或目錄
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
# 移除尾部斜線
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# 主要重定向規則
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ public/$1 [QSA,L]
</IfModule>
我在 LiteSpeed 主機中也是用這 .htaccess
至於public/.htaccess
則不要做任何更改
後記
後來發現其實在apache還有一個問題,也不知算不算是apache問題,準確說應該是Virtual hosting 虛擬主機/網頁寄存的問題
因為Laravel 的filesystem... 內置放了在 app_root/storage/,要用Linux 指令生成Symbolic link
,不是每間hosting 都會給你有輸入Linux指令的權限
我相信有可能要去了解一下 config/filesystems.php
有沒有更改storage_path()
目錄的可能性,