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
ます。
助けてください。