我试图在我的htaccess上重定向一些旧的子目录,但我有成功的麻烦
我的代码如下:
Redirect 301 /oldsection/oldsubsection mysite.com/newsection
Redirect 301 /oldsection mysite.com/newsection/newsubsection
我尝试过很多东西,但它不起作用,有人可以帮助我吗?
答案 0 :(得分:0)
使用RedirectMatch
代替其正则表达式功能,目标只能包含没有域名的网址:
RedirectMatch 301 ^/oldsection/oldsubsection/?$ /newsection
RedirectMatch 301 ^/oldsection/?$ /newsection/newsubsection