我尝试使用我的Joomla网站在.htaccess下面的代码,但它根本不起作用:
Redirect 301 /index.php /
我也尝试过:
Redirect 301 www.domain.com/index.php www.domain.com/
基本上我不想拥有重复的页面,目前我可以使用index.php查看主页,而不是。
我不知道为什么Joomla这样做但它根本不工作。我也在Artio SEO组件下进行了301重定向,但它也没有工作。
答案 0 :(得分:2)
试试这个:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ "http\:\/\/www\.yourdomain\.com\/$1" [R=301,L]
</IfModule>