【发布时间】:2018-01-08 19:00:50
【问题描述】:
我有数百个这样的旧链接需要重定向。
这是一个例子:
/index.php?option=com_content&view=article&id=433:seventh-character-code-categories-and-icd-10-cm&Itemid=101&showall=1
到
/seventh-character-code-categories-and-icd-10-cm
基本上我需要删除 /index.php?option=com_content&view=article&id=433: 部分。
我试过这个,但我对 [0-9] 和 : 部分感到困惑,所以以下内容不起作用:
RewriteRule ^/index.php?option=com_content&view=article&id=[0-9]:(.*)$ /$1 [L,R=301]
【问题讨论】: