0

我在一个名为患者的文件夹中有一个站点

网址如下所示:

http://site.com/patients/post-name

我想重定向

site.com/patients/post-name → newsite.com/post-name

site.com/patients/ → newsite.com/

我已经尝试过了,但 site.com/patients 仍然指向 newsitesite.com/patients

Redirect 301 ^/patients/$ http://www.newsite.com/
Redirect 301 / http://newsite.com/

htaccess 是否有某种正则表达式来匹配 /patients/ 的根,然后/patients/whatever-comes-next 的另一个

4

2 回答 2

1
REDIRECT 301 /patients http://newsite.com

那样有用吗?

于 2013-01-03T16:39:40.870 回答
0

一般来说,“301”POST错误有两种解决方案:

1) 始终在您的“POST” URL 中添加尾部反斜杠(首选)

2) 在您的 httpd.conf 文件中为“POST” URL 创建一个“别名”:

在您的情况下,您需要重定向有两个目的。查看此链接(作为题外话关闭,但仍然有用):

于 2013-01-03T16:03:16.397 回答