本文介绍了如何编写htaccess规则将包含斜线之间文本的所有url重定向到页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何编写htaccess规则以在斜杠之间重定向所有包含sometext词的url
How to write htaccess rule to redirect all the url's that contains the sometext word between the slashes
Ex:
https://www.example.com/sometext/
https://www.example.com/sometext/name.php
https://www.example.com/sometext/sometext/..
https://www.example.com/sometext/../../name.php
所有这些都需要重定向到单个页面。
ALL THESE need to redirect to a single page.
谢谢您的帮助。
推荐答案
然后尝试以下操作:
RedirectMatch ".*\/sometext(.*?)\/" "http://www.example.com/page-to-be-redirected"
这篇关于如何编写htaccess规则将包含斜线之间文本的所有url重定向到页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!