我有一个网站(使用OpenCart CMS,如果它很重要)有很多网址,而且有时会通过GET参数对网站上的网页应用过滤器,例如: http://example.net/category?attr_id=42
或http://example.net/category/sub-category/sub-category2/product?attr_id=42
。此外,有时' attr_id'部分就像&attr_id=42
我只想用/part-id=42
替换这个特定的GET参数。这意味着我想从URL字符串中获取子字符串,并将?attr_id=42
或&attr_id=42
替换为/part-id=42
,一般而言。
即。我想获得http://example.net/category/part-id=42
或http://example.net/category/sub-category/sub-category2/product/part-id=42
如何通过.htaccess实现此功能?或者用其他方式?