0
如果向商店發出請求,觸發的第一個Magento IndexController是什麼?Magento請求索引控制器
如果向商店發出請求,觸發的第一個Magento IndexController是什麼?Magento請求索引控制器
的Magento的架構看起來像這樣... http://alanstorm.com/2009/img/magento-book/php-mvc.png
<global>
<events>
<controller_action_predispatch>
<observers>
<tibdev_seo_page_observer>
<type>singleton</type>
<class>Tibdev_Seo_Model_Page_Observer</class>
<method>checkForEndingSlash</method>
</tibdev_seo_page_observer>
</observers>
</controller_action_predispatch>
</events>
</global>
我現在用的controller_action_predispatch事件,它是工作。 THX傢伙!
發現爲第一個請求(home)調用的IndexController是Mage_Cms_IndexController-> indexAction(),因爲主頁是CMS頁面。 –
這是一個配置設置。參考http://stackoverflow.com/a/13102373/833795 – benmarks