我想告诉我的 Apache 我想要一个重定向永久规则。
我的日志中有两种点击:
xx.xxx.xx.x - - [15/Mar/2013:08:14:21 +0100] "POST /oldEndPoint/services/toto HTTP/1.1" 200 - 6003 -
xx.xxx.xx.x - - [15/Mar/2013:08:15:40 +0100] "POST /newEndPoint/services/Tutu/toto HTTP/1.1" 200 - 1316 -
我想告诉 Apache,当他收到对 /oldEndPoint/services/toto 的点击时,他应该永久重定向(301)到新的 url:/newEndPoint/services/Tutu/toto。
我试过这条规则,但它不起作用,没有重定向出现:
RedirectMatch 301 /modBackend/moderation/facebook /modFront/services/Moderation/facebook
谢谢!