如何禁用特定页面的扩展名,例如我想仅在magento中禁用主页扩展名
<config>
<modules>
<first_module>
<active>false</active>
<codepool>local</codepool>
</first_module>
</modules>
</config>
答案 0 :(得分:2)
我没有遇到过这种类型的禁用功能。我们通常做的是,我们从页面负责布局句柄下的local.xml中删除页面上的模块,并采取负责任的参考。
例如。如果我没有在主页上为eg.newsletter提供一个特定的模块,那么,
<cms_index_index> <!--/ Homepage -->
<reference name="footer"> <!--/ Reference where the module appearing -->
<remove name="newsletter"/> <!--/ Remove -->
</reference>
</cms_index_index>
答案 1 :(得分:0)
这在Magento 1.x中是不可能的
您只能为每个商店视图或网站启用/禁用模块。