我在一个名为患者的文件夹中有一个站点
网址如下所示:
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 的另一个?