我正在尝试在我的xampp上运行zf2。 我有这个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
。
请帮忙。
答案 0 :(得分:0)
尝试http://zf2-tutorial.localhost/public
如果可行,您可以更改vhosts文件中的以下条目
DocumentRoot "C:/xampp/htdocs/zf2-tutorial/public"
<Directory "C:/xampp/htdocs/zf2-tutorial/public">