301重定向htaccess嵌套路径

时间:2014-04-23 08:46:01

标签: php apache .htaccess

我试图将页面重定向到主页:

Redirect 301 /about http://example.com

它有效,但它也会重定向/about/contact之类的网页(因此它变为http://example.com/contact)。有没有办法重定向/about页面?

1 个答案:

答案 0 :(得分:1)

在此处使用RedirectMatch指令,因为它允许指定正则表达式。然后使用$符号表示没有其他字符可以跟随:

RedirectMatch 301 \/about$ http://example.com

此外,我可以选择在最后添加/

RedirectMatch 301 \/about\/?$ http://example.com