I have setup a custom module in my magento store (CE-1.9.0.0) with the following in my config file:
<?xml version="1.0"?>
<config>
<modules>
<Company_Custom>
<version>0.1.0</version>
</Company_Custom>
</modules>
<frontend>
<routers>
<custom>
<use>standard</use>
<args>
<module>Company_Custom</module>
<frontName>our-work/digital-work</frontName>
</args>
</custom>
</routers>
etc...
I know that when I have setup custom modules before the frontname works when it is a single string (i.e if I wanted to use just digital-work
this works, just not when I have a nested string in place as in our-work/digital-work
- this results in a page not found.
I am new to routers and magento so I presume I have misinterpreted what is possible in the <frontName>
Is it possible to have a nested frontname?