在vhost中具有以下配置。当我通过MAMP运行它时,它总是返回500错误。不知道出什么问题了。停止了mamp,并使用代客运行。 laravel网站成功运行。引导程序/缓存和存储的权限看起来不错。错误日志为空,无法调试,并且.env文件中的调试设置设置为true。仅存在访问日志,错误为500。下面是我为MAMP配置的vhosts。 vhosts文件中的其他网站。
<VirtualHost *:80>
ServerName elearn.localhost
ServerAlias elearn.localhost
DocumentRoot "/Users/user1/code/elearn/public"
ErrorLog "/Users/user1/logs/elearn.localhost-error_log"
CustomLog "/Users/user1/logs/elearn.localhost-access_log" common
<Directory "/Users/user1/code/elearn/public">
DirectoryIndex index.php
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Order allow,deny
Allow from all
Require all granted
Satisfy Any
</Directory>
</VirtualHost>
答案 0 :(得分:2)
好的,清单:
答案 1 :(得分:2)
您正在使用哪个版本的Laravel,如果版本为5.6,请确保您在MAMP中运行的PHP至少为7.1-多次犯规?