给定以下路径: http ://www.testsite.com/some/path/
我想将其重定向到 http://www.testing.com/new/stuff/
无论路径是否有斜杠,如何让 .htaccess 执行该重定向?
编辑
我试过这个:
RedirectMatch 301 /some/path(.*) /new/stuff/$1
但是,它会导致以下重定向
给定以下路径: http ://www.testsite.com/some/path/
我想将其重定向到 http://www.testing.com/new/stuff/
无论路径是否有斜杠,如何让 .htaccess 执行该重定向?
我试过这个:
RedirectMatch 301 /some/path(.*) /new/stuff/$1
但是,它会导致以下重定向