0

我想告诉我的 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

谢谢!

4

1 回答 1

0

您不需要RedirectMatch简单的重定向。

只是看到Redirect而已。您必须先给出旧网址,最后给出新网址

Redirect /oldEndPoint/services/toto /newEndPoint/services/Tutu/toto
于 2013-03-17T02:05:32.740 回答