我正在尝试构建一个自定义Magento模块,该模块在Magento中创建一个管理页面。我有一切工作正常除了管理页面网址是domain.com/index.php/module/controllername/function/ 什么时候应该 domain.com/index.php/adminpath/module/controllername/function /
<Module>
<use>admin</use>
<args>
<module>Developer_Module_Adminhtml</module>
<frontName>Module</frontName>
</args>
</Module>
</routers>
<!--<routers>
<adminhtml>
<args>
<module>
<Developer_Module after="Mage_Adminhtml">Developer_Module_Adminhtml</Developer_Module>
</module>
</args>
</adminhtml>
</routers>-->
我的管理菜单链接是
<menu1 translate="title" module="Module">
<title>Developer</title>
<sort_order>60</sort_order>
<children>
<menuitem1 module="Module">
<title>Page Link</title>
<action>module/function</action> //setting this adminhtml/module/function just gives 404 but changes url to what i want
</menuitem1>
</children>
</menu1>
所以我想知道如何将模块设置为正确的标准管理路径?