Magento,重定向来自" www.domain.com/home"以网址为基础" www.domain.com"

时间:2014-04-17 09:25:31

标签: magento url base redirect

我正在尝试配置如何将我的magento网站从www.domain.com/home重定向到基本网址www.domain.com,它始终重定向到www.domain.com/home

更新

谢谢阿米特,我使用你的解决方案

RewriteEngine on
RewriteCond %{THE_REQUEST} ^.*/accueil
RewriteRule ^(.*)accueil$ http://www.cabas-durables.fr/$1 [R=301,L]

但我在浏览器上收到错误

  

该页面未正确重定向

然后我将http://www.cabas-durables.fr/ $ 1后的$1更改为index.php,然后显示" http://www.cabas-durables.fr/index.php"在浏览器中,然后我将其带回$1我没有收到任何错误,但它仍然停留在" http://www.cabas-durables.fr/index.php"

我不知道在哪里将其更改为" http://www.cabas-durables.fr/"

如果不改变,我会遇到SEO的问题

感谢

2 个答案:

答案 0 :(得分:2)

使用htaccess可能更好。  发现

Options +FollowSymLinks
 RewriteEngine on 

然后 将以下代码放在htaccess文件中

RewriteCond %{THE_REQUEST} ^.*/home
RewriteRule ^(.*)home$ http://www.domain.com/$1 [R=301,L] 

答案 1 :(得分:-1)

在管理面板中创建网址重定向。

使用tagret路径 - "../";它将重定向到主页。