我正在爲zend Framework工作,我已經使用zend Framework創建了一個網站,但現在我想在遠程服務器上運行我的Project。但是,當我將所有項目數據傳輸到遠程服務器時,它不起作用。如何在遠程服務器上運行zend框架
我的zend框架項目良好localhost。
我也讀的Getting Started with Zend Framework By Rob Allen, www.akrabat.com.
,因此手冊,閱讀本手冊後,我發現這個重要的文章。
You must also ensure that Apache is configured to support .htaccess files. This is usually done by
changing the setting:
! AllowOverride None
to
! AllowOverride All
in your httpd.conf file. Check with your distribution’s documentation for exact details. You will not be able
to navigate to any page other than the home page in this tutorial if you have not configured mod_rewrite
and .htaccess usage correctly.
但實際上我使用共享遠程服務器所以從我改變apache config
也mod_rewrite
。
注意: - 我的項目在本地主機上工作,因爲我在閱讀本文檔後進行了一些更改。
任何幫助,高度讚賞。
你得到了什麼錯誤? – HamZa
@HamZa DzCyberDeV顯示我的本地主機也沒有發生同樣的事情,但當我做出更改後,我能夠看到項目 – Relax
您可以檢查您的主機是否支持.htaccess通過創建一個文件夾並設置一個.htaccess並寫入一些文本就像「只是爲了測試,如果HTACCESS支持」,保存它,並打開瀏覽器到該文件夾,如果你得到500內部服務器錯誤,那麼你的主機會支持.htaccess ... – HamZa