更改Magento联系人页面URL

时间:2011-05-05 10:13:16

标签: magento

如何将Magento联系人页面网址从/contacts更改为contact-us.html

感谢您的任何建议。

4 个答案:

答案 0 :(得分:20)

  1. 目录菜单中,点击网址重写管理
  2. 点击添加网址重写按钮。
  3. 选择添加自定义类型。
  4. 输入 ID路径目标路径的“联系人”。
  5. 请求路径输入“contact-us.html”。
  6. 点击保存按钮。

答案 1 :(得分:13)

正确的'方法是创建一个类似于下面的小模块;

  

应用程序的/ etc /模块/ Organisation_Module.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Organisation_Module>
            <active>true</active>
            <codePool>local</codePool>
        </Organisation_Module>
    </modules>
</config> 

和...

  

应用程序/代码/本地/组织/模块的/ etc / config.xml中

<?xml version="1.0"?>
<config>
    <modules>
        <Organisation_Module>
            <version>0.0.1</version>
        </Organisation_Module>
    </modules>
    <frontend>
        <routers>
            <contacts>
                <use>standard</use>
                <args>
                    <module>Mage_Contacts</module>
                    <frontName>contact-us.html</frontName>
                </args>
            </contacts>
        </routers>
    </frontend>
</config>

上传文件,清除缓存,您就可以了。

答案 2 :(得分:1)

具体必须是

ID路径目标路径中的

新网址请求路径

中的旧网址

答案 3 :(得分:0)

您是否尝试过更改网址存根?