我在Ubuntu機器上配置了Zend2網站。 項目路徑:/var/www/zf2/
沒有虛擬主機的Zend2
虛擬主機配置:
<VirtualHost *:80>
ServerName zf2.localhost
DocumentRoot /var/www/html/zf2/public
SetENV APPLICATION_ENV "development"
<Directory /var/www/html/zf2/public/>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
訪問 「本地主機/ ZF2」 列表中的目錄中的文件。無論如何訪問這個zend2網站沒有虛擬主機,即localhost/zf2? 我已經嘗試通過在/var/www/html/zf2
中添加.htacess,但它沒有改變。任何幫助將不勝感激!
爲什麼不使用mod_rewrite將localhost/zf2的所有請求發送到localhost/zf2/public,這是網站的根? –