Htaccess重定向参数(需要删除)

时间:2015-06-03 08:27:08

标签: .htaccess redirect

要迁移新网站,我需要重定向/example.html?id=2重定向到/example/new-page.html

当我创建这样的重定向时:

  

重定向301 /example.html?id=2 https://www.url.com/example/new-page.html   重定向301 /example2.html?bla=34 https://www.url.com/example/new-page2.html   重定向301 /eteste.html?yolo=2 https://www.url.com/example/new-page3.html

它回到了这个:

  

https://www.url.com/example/new-page.html?id=2   等

将其更改为不起作用:

  

重定向301 /example.html?id=2 https://www.url.com/example/new-page.html

我有什么问题(是的!;))

1 个答案:

答案 0 :(得分:1)

您需要使用mod_rewrite来匹配查询字符串:

bundleExec