我有類似的問題,我嘗試了所有的解決方案上面,也從谷歌,但最終它沒有解決問題我想一個解決方案,就是在.htaccess文件根目錄
############################################
## rewrite everything else to index.php
RewriteRule .* index.php [L]
</IfModule>
#########
我只是發表評論像
#RewriteRule .* index.php [L]
,然後將上面的行添加此代碼
####
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /magento/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
這將解決我的問題,然後所有類別的頁面和產品頁面都打開完美,不會再出現404錯誤或禁止的錯誤。只是發佈它可能是其幫助他人
其中404頁? http://alanstorm.com/magentos_many_404_pages(自我鏈接描述各種404頁面Magento可以告訴你,每個人都有自己的理由顯示) – 2011-12-27 17:35:46
@AlanStorm:謝謝你的迴應,我得到404頁面,如第二次截圖您的文章標題爲「定製商店異常404頁面」。我有多商店設置,我猜問題出在這個setup.any idea.i共享我的core_store和core_store_group表。請檢查它 – Gowri 2011-12-28 04:26:48
這意味着有一個例外被扔在堆棧中的某處。什麼被添加到你的PHP錯誤日誌和/或Magento異常日誌? – 2011-12-28 06:09:55