我创建了一个新模块来替换客户/帐户菜单并有一个链接 www.mysite.com/account
我现在想将登录、注册和其他页面更改为 www.mysite.com/account/login 等
而不是恢复到客户/帐户/登录等
最好的方法是什么?
这是迄今为止我制作的 config.xml 代码....
<?xml version="1.0"?>
<config>
<modules>
<SquareNetMedia_MyAccount>
<version>0.1.0</version>
</SquareNetMedia_MyAccount>
</modules>
<frontend>
<routers>
<myaccount>
<use>standard</use>
<args>
<module>SquareNetMedia_MyAccount</module>
<frontName>account</frontName>
</args>
</myaccount>
</routers>
<layout>
<updates>
<myaccount>
<file>myaccount.xml</file>
</myaccount>
</updates>
</layout>
</frontend>
<global>
<helpers>
<myaccount>
<class>SquareNetMedia_MyAccount_Helper</class>
</myaccount>
</helpers>
<blocks>
<myaccount>
<class>SquareNetMedia_MyAccount_Block</class>
</myaccount>
</blocks>
</global>
</config>