htaccess将301旧子目录重定向到新的子目录

时间:2014-06-26 18:10:27

标签: .htaccess redirect

我试图在我的htaccess上重定向一些旧的子目录,但我有成功的麻烦

我的代码如下:

Redirect 301  /oldsection/oldsubsection  mysite.com/newsection
Redirect 301  /oldsection        mysite.com/newsection/newsubsection

我尝试过很多东西,但它不起作用,有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

使用RedirectMatch代替其正则表达式功能,目标只能包含没有域名的网址:

RedirectMatch 301 ^/oldsection/oldsubsection/?$ /newsection
RedirectMatch 301 ^/oldsection/?$ /newsection/newsubsection