2012-10-29 73 views
0

如果向商店發出請求,觸發的第一個Magento IndexController是什麼?Magento請求索引控制器

+0

發現爲第一個請求(home)調用的IndexController是Mage_Cms_IndexController-> indexAction(),因爲主頁是CMS頁面。 –

+4

這是一個配置設置。參考http://stackoverflow.com/a/13102373/833795 – benmarks

回答

1
<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傢伙!