我试图将页面重定向到主页:
Redirect 301 /about http://example.com
它有效,但它也会重定向/about/contact
之类的网页(因此它变为http://example.com/contact
)。有没有办法重定向/about
页面?
答案 0 :(得分:1)
在此处使用RedirectMatch
指令,因为它允许指定正则表达式。然后使用$
符号表示没有其他字符可以跟随:
RedirectMatch 301 \/about$ http://example.com
此外,我可以选择在最后添加/
:
RedirectMatch 301 \/about\/?$ http://example.com