如何在magento的url中添加www

时间:2015-05-05 12:43:19

标签: magento url url-rewriting magento-1.8

我正在使用magento 1.8.1,我想在我们的网址中添加www。

例如:现在我的网址就像http://example.com/

我想要http://www.example.com/

我在谷歌搜索并得到了这个解决方案:

     rewriteCond %{HTTP_HOST} !^www.example.com [NC]
     rewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]

referenced by

我不知道在哪里放这个。

2 个答案:

答案 0 :(得分:2)

您需要按照以下步骤操作:

1)签到系统>>配置>>网络>>是否设置了不安全和安全检查正确的URL。

2).htaccess更改:

RewriteCond %{HTTP_HOST} ^yoursitename.com$
RewriteRule (.*) http://www.yoursitename.com$1 [R=301]

答案 1 :(得分:2)

添加基本URL的正确方法是在系统配置中,而不是重写.htaccess中的规则。首先,确保您的域的区域文件中有www.example.com的CNAME记录。其次,如果您为不安全的基本网址设置http://www.example.com/,并为您的安全基本网址设置https://www.example.com/,则Magento会在路由期间重定向到这些网址。为了善良,请不要在你的htaccess中进行任何Magento重定向。

enter image description here

您还可以设置重定向类型代码:

enter image description here