我在httpd.conf文件中有這個配置。apache上的虛擬主機
#NameVirtualHost <ip_address>
<VirtualHost <ip_address>:80>
DocumentRoot /var/www/<domain_folder>
ServerName <doman>
ErrorLog logs/<doman>-error_log
CustomLog logs/<doman>-access_log common
</VirtualHost>
在此配置後
如果鍵入「http://domain.com」它顯示的主頁 有任何問題,但是當我點擊聯繫人頁面「http://domain.com/contacts/」 其顯示404錯誤。
是這個配置錯誤嗎? 注意:這是aptana市場(magento)應用程序
如果我輸入「domain.com/index.php/contacts/」;它的工作正常。
如果我輸入「http://domain.com/index.php/contacts/」其工作正常。 –