簡體   English   中英

htaccess-301重定向,刪除部分網址

[英]htaccess - 301 redirect removing part of url

我無法使用此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]

提前致謝

您可以調整正則表達式以匹配BaTa ,如下所示:

RewriteEngine on
RewriteRule ^(.+?/)?BeTa(?:/(.*))?$ /$1$2 [NC,R=301,L]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM