我正在尝试在xampp上设置我的项目。
<VirtualHost *:80>
ServerAdmin test@test.biz
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/test/public"
ServerName testproject.dev
ErrorLog "logs/dummy-host2.example.com-error_log"
CustomLog "logs/dummy-host2.example.com-access_log" common
<Directory "/Applications/XAMPP/xamppfiles/htdocs/test/public">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
我在httpd.conf中为虚拟主机取消注释,但是我得到错误500.有什么建议吗?我正在使用MAC OS。
同样在主持人中我添加了:
127.0.0.1 testproject.dev
答案 0 :(得分:1)
有什么建议吗?
如果不查看日志,就无法帮助您。您应该启用Apache HTTP Server的日志记录并检查事件。我猜你的案例中的日志是dummy-host2.example.com-error_log
。查看事件并找出此配置的错误。