1

我有成千上万个如下所示的旧 URL,我想知道是否有办法重定向所有以 index2.php 开头的 URL?到一页,而不是分开做

我能够使用购买重定向网站上的所有其他 URL

RewriteRule ^/old-category(.*)$ /index.php? [L,R=301]

但这仅适用于 URL 中没有这些目录的目录。

这些是典型的 URL

  • index2.php?option=com_virtuemart&Itemid=&category_id=2&page=shop.browse&pop=1&tmpl=component

  • index2.php?page=shop.product_details&product_id=18&flypage=flypage_rhino.tpl&pop=1&manufacturer_id=1&option=com_virtuemart&Itemid=7

  • index2.php?page=shop.product_details&product_id=34&flypage=flypage_rhino.tpl&pop=1&option=com_virtuemart&Itemid=7

  • index2.php?page=shop.product_details&product_id=121&flypage=flypage_rhino.tpl&pop=1&manufacturer_id=1&option=com_virtuemart&Itemid=7

  • index2.php?page=shop.product_details&product_id=9&flypage=flypage.tpl&pop=1&manufacturer_id=1&option=com_virtuemart&Itemid=7

  • index2.php?page=shop.product_details&flypage=flypage_rhino.tpl&product_id=85&category_id=16&option=com_virtuemart&Itemid=7&pop=1&tmpl=component

任何帮助表示赞赏。

4

1 回答 1

0

只需做同样的事情:

RewriteRule ^/?index2\.php$ /index.php? [L,R=301]

而不是old-category,将其替换为index2\.php

于 2013-11-06T01:56:53.757 回答