注意: stackoverflow中已有相同的问题。我尝试了那些但仍然没有工作。
我的要求是,如果有人试图通过网址访问我们的网站
http://oursite.com
然后它应该重定向到
http://www.oursite.com
用于SEO目的。
我在Magento中遇到了Redirect 301的问题。我试着用
admin->System->Configuration->Web->Url Options->Auto-redirect to Base URL
我将其设置为是(301 Moved Permanenty),但仍然无效。我尝试使用以下代码块编辑.htaccess
Redirect 301 http://oursite.com http://www.outsite.com
但它仍然没有用。我不知道可能是什么原因。有任何建议请。
答案 0 :(得分:1)
假设在admin - >系统 - >配置 - >网络 - >不安全
基本网址=
http://www.oursite.com
然后您的重定向到基本网址
如果您想使用.htaccess,请尝试
RewriteCond %{HTTP_HOST} ^oursite\.com$ [NC]
RewriteRule ^(.*)$ http://www.oursite.com/$1 [R=301,L]