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

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -