嗨所以我設置了Laravel,但它一直重定向到「哎呦出事了頁」Laravel:設置虛擬主機Laravel
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/myfolder/public"
ServerName [email protected]
ServerAlias l1.mysite.com
<Directory "C:/xampp/htdocs/laravel/laravel/public">
AllowOverride All
Order Allow,Deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
我在hosts文件中l1.mysite.com以及。並且在我的httpd.conf文件中包含「LoadModule rewrite_module modules/mod_rewrite.so」(沒有#),並且我的httpd-vhosts.conf也包含在內。任何幫助表示感謝。
你運行過'php composer安裝/更新程序嗎? – ollieread
確定即時更新。 – Growlithe
'ServerName'應該是l1.mysite.com,刪除'ServerAlias',然後用你正在看到的確切錯誤更新你的問題。 – msturdy