私は自分のフォルダにリダイレクトしようとしています:
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