我尝试在我的文件夹中进行重定向:
Redirect /promotion/ /newpromotion
Redirect /promotion/first/ /new/first/
现在如果我尝试打开http://mysite.com/promotion/first
我打开http://mysite.com/newpromotion/new/first
但我需要http://mysite.com/new/first
我该如何解决?
UPD: 这很疯狂,但我做到了:
Redirect /promotion/ /newpromotion
Redirect /promotion/first/ /new/first/
Redirect /newpromotion/new/first /new/first/
解决方案: 需要反转2个指令:
Redirect /promotion/first /new/first
Redirect /promotion /newpromotion