MAMP VirtualHost 无法在 Windows 上运行

MAMP VirtualHost is not working on Windows

我正在尝试在 MAMP Windows 上设置 VitualHost,但它不起作用。它加载 2-3 秒,然后显示 Can't access this website

这是我的配置:

# Virtual hosts
Include conf/extra/httpd-vhosts.conf
NameVirtualHost *:80
<VirtualHost *:80>                                                                
    DocumentRoot C:\MAMP\htdocs\website
    ServerName project.local                                             
    ServerAlias www.project.local                                         

    <Directory "C:\MAMP\htdocs\website">                                          
        Allow from All                                                                  
        AllowOverride all                                                               
        Options -Indexes +FollowSymlinks                                                
    </Directory>                                                                      

    UseCanonicalName on                                                               
</VirtualHost>

Apache 在 80 端口上。

这里有什么问题吗?

谢谢!

在c:\Windows\System32\Drivers\etc\hosts

中添加如下代码
127.0.0.1 project.local
127.0.0.1 www.project.local

重启apache。