将英文网址转换为西班牙语网址

时间:2015-12-25 08:48:36

标签: magento-1.9

我需要将英文网址转换为西班牙语网址。我尝试过URL重写管理,但这对我没有帮助。 以下URL将显示如何重写URL。

http://blog.beetleweb.com/2012/10/creating-custom-magento-url-rewrites/

我的目标是转换 URL

www.example.com/customer/account/create

www.example.com/cliente/cuenta/crear

我是否必须为此创建一个新商店,或者这可以在不创建商店的情况下完成?

1 个答案:

答案 0 :(得分:1)

Magento解决方案:

(下面的代码没有经过测试,它只是一种解决的开始方式)

  

创建用于重写Magento客户URL的自定义模块。

     

app/local/MyNameSpace/MyModule/etc/config.xml中,您可以拥有   像这样的东西:

<frontend>
    <routers>
        <customer>
            <use>standard</use>
            <args>
            <mynamespace_mymodule before="Mage_Customer">MyNameSpace_MyModule</mynamespace_mymodule>
                <frontName>cliente</frontName>
            </args>
        </customer>
    </routers>
<frontend>

Apache2解决方案:

(下面的代码没有经过测试,它只是一种解决的开始方式)

  

例如,在根目录的.htaccess文件中使用Apache2重写URL规则。

     

您的.htaccess文件似乎是这样的:

RewriteEngine on
RewriteRule ^/customer/([a-z0-9\-]+)$ /cliente/$1 [L]