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

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -