0

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ます。

助けてください。

4

1 に答える 1

0

http://zf2-tutorial.localhost/public を試す

それが機能する場合は、vhosts ファイルの次のエントリを変更できます

DocumentRoot "C:/xampp/htdocs/zf2-tutorial/public"    

<Directory "C:/xampp/htdocs/zf2-tutorial/public">
于 2013-08-08T16:43:50.227 に答える