我正在尝试重定向我的页面
http://example.com/category/general/
到
http://example.com/blog/category/general/
我认为这会起作用,但最终会无休止地循环
RedirectMatch 301 /category/general/ /blog/category/general/
答案 0 :(得分:3)
你也必须使用正则表达式锚:
RedirectMatch 301 ^/category/general/?$ /blog/category/general/
使用捕获组:
RedirectMatch 301 ^/(category/general/?)$ /blog/$1
清除浏览器缓存后进行测试。