我将旧的 joomla 网站迁移到了 Joomla 3.0。我将 URL 更改为 SEF 友好 URL,我需要将所有旧 URL (www.mysite.com/index.php/mypage) 重定向到新 URL (www.mysite.com/mypage.html) 我尝试添加此代码在我的 .htaccess 的底部,但它不起作用:
RewriteEngine on
RewriteRule ^/index.php/(.*)$ http://www.nextlog.it/$1 [R=301,L]
RewriteRule ^/index.php/(.*)$ $1.html [R=301,L]