我试图让 zf2 在我的 xampp 上运行。我有这个 vhosts.conf 文件
NameVirtualHost 127.0.0.1:80
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
ServerName zf2-tutorial.localhost
DocumentRoot "C:/xampp/htdocs/zf2-tutorial"
SetEnv APPLICATION_ENV "development"
<Directory "C:/xampp/htdocs/zf2-tutorial">
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
和这个主机文件
127.0.0.1 zf2-tutorial.localhost
现在,当我运行时zf2-tutorial.localhost
,浏览器会转到zf2-tutorial.localhost/xampp
并显示 xampp 页面。
当我跑步localhost
时,它localhost/xampp
也会去。
请帮忙。