我创建了一个模块,同样的网址就是:
http://magento.korenpub.com/designer/index/index/id/26/value/Joseph%20B.%20Soloveitchik
但我需要将网址重写为
http://magento.korenpub.com/author/id/26/value/Joseph%20B.%20Soloveitchik
如何使用config.xml
完成?我已经阅读了blog这个描述的内容,但我无法为我的模块执行此操作。
答案 0 :(得分:1)
我一直在以更复杂的方式思考它,但它很简单
<global>
<rewrite>
<designer_url>
<from><![CDATA[#^/author/id/#]]></from>
<to><![CDATA[/designer/index/index/id/]]></to>
<complete>1</complete>
</designer_url>
</rewrite>
</global>