我想在域上应用301重定向,以便我们可以将用户重定向到http://domain.com/page/about。
htaccess的:
重定向301域名/ page / about
浏览器错误:
警告:glob()[function.glob]:模式超过允许的最大长度260个字符。
请建议我。
由于
答案 0 :(得分:0)
Redirect
指令链接两个路径节点,因此当您从Redirect /path /something/something
开始时,它会重新定向 启动的每个 URI {{1 }}。这意味着/path
之类的请求会重定向到http://domain/path/some/other/path
。所以你不能使用/something/something/some/other/path
来做你正在做的事情。您可以尝试Redirect
:
RedirectMatch
或者,使用mod_rewrite:
RedirectMatch 301 ^/$ /page/about