2

我希望重定向example.com/foo/[some string]FOOBARsubdomain.example.com/[some string]Foobar

我在我的 .htaccess 文件中使用 RedirectMatch 301 /foo/(^.*$)FOOBAR http://subdomain.example.com/$1Foobar 它不起作用,只会导致 404

有什么建议么?

4

1 回答 1

2

这很可能是因为您有以下规则:

RedirectMatch 301 /foo/(^.*$)FOOBAR http://subdomain.example.com/$1Foobar

在哪里,你已经把$括号里面了!尝试以下一种:

RedirectMatch 301 /foo/(^.*)FOOBAR$ http://subdomain.example.com/$1Foobar
于 2012-04-15T15:45:13.690 回答