我想知道如何过滤掉多个网址列表,然后重定向到网页。
示例:
www.domain.de/notuse/seite1.html
www.domain.de/dir1/notuse/seite1.html
www.domain.de/dir1/dir2/notuse/seite1.html
我现在想要" notuse "过滤了,因为我是初学者,我不确定这是否正确:
RedirectMatch permanent ^.+notuse/ http://www.domain.de/new-directory/index.html
你会建议什么?
答案 0 :(得分:0)
更改正则表达式模式:
RedirectMatch ^/.*notuse/site1\.html$ http://domain.de/new-dir/index.html
。* 会将任何字符与零匹配,因此如果存在于Request_uri中,它将匹配 / dir1 / dir2 。