2013-07-27 135 views
0

我已經安裝了Zend框架我WAMP但muiple vitual主機不是在我的WAMP 每次我打開Zend的主機我的WAMP的主​​頁得到顯示多個虛擬主機不工作

I have included the following code in httpd.conf file 

NameVirtualHost 127.0.0.1 
<VirtualHost 127.0.0.1 > 

DocumentRoot "C:/zendy/public" 
ServerName zendy 

<Directory "C:/zendy/public"> 

AllowOverride Autconfig FileInfo Indexes Limited options 

Order Deny,Allow 

Allow from 127.0.0.1 

</Directory> 
</VirtualHost> 

I have also bind the address in my hosts file 
    127.0.0.1 zendy 

plz幫助工作..

+0

您是否重新啓動了Apache? –

+0

是的,我現在重新啓動它給403禁止錯誤「你沒有權限訪問/在此服務器上。」 – bhavesh

回答

0

嘗試在虛擬主機設置中添加端口並重新啓動您的網絡服務器,然後它應該可以正常工作。 後來編輯:如果我記得Windows有另一個斜線...

NameVirtualHost 127.0.0.1 
<VirtualHost 127.0.0.1:80> 
DocumentRoot "C:\zendy\public" 
ServerName zendy 
<Directory "C:\zendy\public"> 
AllowOverride Autconfig FileInfo Indexes Limited options 
Order Deny,Allow 
Allow from 127.0.0.1 
</Directory> 
</VirtualHost> 
+0

謝謝......它的工作,但現在它給403禁止錯誤「你沒有權限訪問/在此服務器上」。 – bhavesh

+0

檢查您的index.php文件的文件權限 –

+0

任何機會是公用文件夾爲空嗎?如果是這樣,請嘗試添加一個index.html文件或啓用索引(您只允許它從.htaccess更改,而不是其他任何從虛擬主機) –