0

我在我的 Joomla 网站上尝试了 .htaccess 中的以下代码,但它根本不起作用:

Redirect 301 /index.php /

我也试过:

Redirect 301 www.domain.com/index.php www.domain.com/

基本上我不想有重复的页面,目前我可以使用 index.php 和不查看主页。

我不知道为什么 Joomla 会这样做,但它根本不起作用。我还在 Artio SEO 组件下完成了 301 重定向,但它也不起作用。

4

1 回答 1

2

试试这个:

<IfModule mod_rewrite.c>
  RewriteEngine on

  RewriteCond %{THE_REQUEST} ^.*/index.php
  RewriteRule ^(.*)index.php$ "http\:\/\/www\.yourdomain\.com\/$1" [R=301,L]
</IfModule>
于 2012-04-12T15:27:18.673 回答