2017-05-29 86 views

回答

1

你應該configure您的Web服務器的文檔根目錄/ Web文件夾,以避免此問題。 Apache的示例配置代碼片段:

DocumentRoot /var/www/project/web 
<Directory /var/www/project/web> 
    AllowOverride All 
    Order Allow,Deny 
    Allow from all 
</Directory> 
+0

請不要發佈只是鏈接的答案,而是複製粘貼必要的部分來解決問題,並將其包含在這裏。 – k0pernikus

+0

好吧,我明白了謝謝 – Ayaddi

+0

k0pernikus,謝謝你的提示。更新了我的答案。 –