我想知道当我访问Magento安装的Web应用程序的前端主页并点击标题上的产品类别时会加载哪些句柄。 例如,假设我转到http:// localhost / mymagento,然后单击衣服链接,该链接应该将我带到http:// localhost / mymagento / clothing.html。在/ mymagento /之后我没有看到格式为frontName + controllerName + actionName,所以如何知道将从此HTTP请求中收集哪些句柄?
感谢。
答案 0 :(得分:1)
内部网址重写为catalog/category/view
- 请参阅Mage_Core_Controller_Varien_Front::dispatch()
,Mage_Core_Model_Url_Rewrite::rewrite()
和core_url_rewrite
表。因此,catalog_category_view
是完整的操作名称。
还加载了其他几个句柄。这些可以通过Mage_Core_model_Layout_Update::getHandles()
检索。