0

给定以下路径: http ://www.testsite.com/some/path/

我想将其重定向到 http://www.testing.com/new/stuff/

无论路径是否有斜杠,如何让 .htaccess 执行该重定向?

编辑

我试过这个:

RedirectMatch 301 /some/path(.*) /new/stuff/$1

但是,它会导致以下重定向

http://www.testing.com/new/stuff/?/some/path

4

1 回答 1

0

如何在不向新路径附加任何内容的情况下从一条路径重定向到另一条路径。我只希望它转到'/new/stuff/',最后什么都没有,不管'/some/path'之后有什么,如果有的话

只需$1从您RedirectMatch的目标中删除。您还应该包括^URI 的开头:

RedirectMatch 301 ^/some/path(.*) /new/stuff/
于 2012-08-09T20:54:56.927 回答