我无法开始执行此 301 重定向,我必须从所有请求中删除“BeTa”一词,然后重定向:
FROM:
http://www.example.com/BeTa/other/content
TO:
http://www.example.com/other/content
“BeTa”也可能出现在网址的其他部分:
FROM:
http://www.example.com/bla/BeTa/other/content
TO:
http://www.example.com/bla/other/content
是否可以?现在我只尝试了第一部分:
RewriteEngine on
RewriteRule ^/BeTa/(.*)$ /$1 [R=301,L]
Run Code Online (Sandbox Code Playgroud)
提前致谢