Magento请求IndexController

时间:2012-10-29 10:22:34

标签: magento

如果向商店发出请求,Magento中第一个触发的IndexController是什么?

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分: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家伙!