1
http://example.com/category/general/
到
http://example.com/blog/category/general/
我認爲這會工作重定向我的網頁,但它結束了不斷地循環
RedirectMatch 301 /category/general/ /blog/category/general/
http://example.com/category/general/
到
http://example.com/blog/category/general/
我認爲這會工作重定向我的網頁,但它結束了不斷地循環
RedirectMatch 301 /category/general/ /blog/category/general/
您也必須使用正則表達式錨點:
個RedirectMatch 301 ^/category/general/?$ /blog/category/general/
並與捕獲組:清除瀏覽器緩存後
RedirectMatch 301 ^/(category/general/?)$ /blog/$1
測試此。