【发布时间】:2013-11-01 22:36:17
【问题描述】:
我将旧的 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]
【问题讨论】:
-
“不起作用”无法清楚描述问题
-
“不起作用”我的意思是代码没有做任何事情。
-
@Olèp:你应该发布完整的
DOCUMENT_ROOT/.htaccess
标签: .htaccess mod-rewrite redirect joomla