Magento: Creating custom pages with multiple levels in the url -
i've been creating pages using custom module, having following designate url:
<frontend> <routers> <materials> <use>standard</use> <args> <module>modulename_custom</module> <frontname>materials</frontname> </args> </materials> <materials_wood> <use>standard</use> <args> <module>modulename_custom</module> <frontname>materials/wood</frontname> </args> </materials_wood> </routers> </frontend>
i want have different levels in url, www.example.com/materials/ , www.example.com/materials/wood/ of course, above example doesn't work.
is possible achieve want?
Comments
Post a Comment