【发布时间】:2015-01-18 15:24:57
【问题描述】:
我无法进行此 301 重定向,我必须从所有请求中删除“BeTa”字样,然后重定向:FROM:
http://www.example.com/BeTa/other/content
TO:
http://www.example.com/other/content
“BeTa”也可以出现在 url 的其他部分: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]
提前致谢
【问题讨论】:
标签: .htaccess redirect http-status-code-301