如何在.htacess Rewrite 中写入参数 URL

如何在.htacess Rewrite 中写入参数 URL

我想要指向这个 URL .htaccess

http://www.example.com/furniture/chair/foldingchair

http://www.example.com/products.asp?catID=1&SubID=2&SubCatID=3 

在哪里

  • catID=1= 家具
  • SubID=2= 椅子
  • SubCatID=3= 折叠椅

每个参数都有自己的名字,例如

  • catid=1 家具
  • Subid=4 桌子
  • subcatId=5圆桌会议

但我有几百个 URL,所以我需要一个可以适用于所有 URL 的

RewriteRule furniture/chair/foldingchair/?$ products.asp?CatID=1&SubID=2&SubCatID=3

相关内容