在Joomla中重定向永久标记

时间:2014-10-09 18:56:30

标签: .htaccess joomla tags

由于最近对Joomla 3.3.6的数据更新,有几个URL给出了404,因为Joomla 3.x中不支持Joomla 1.5.26中使用的Taxomy组件 我想永久地将这些旧URL重定向到新的,我在htaccess中使用了这个规则但是不起作用:

RewriteRule ^http://www.vistaalmar.es/tag/(.*)$ http://www.vistaalmar.es/component/taxonomy/$1 [L,R=301]

我可以为此重定向提供任何其他想法。

1 个答案:

答案 0 :(得分:0)

如果您的链接已有/component/taxonomy/部分,并且您想将其重定向到/tag/,则必须将规则更改为:

RewriteRule ^component/taxonomy/(.*)$ /tag/$1 [L,R=301]

希望这有帮助