2

我有一个网站,例如(http://example.com)。我希望 / 即http://example.com的任何请求都被重定向到http://example.com/stuff。我添加了一个带有以下行的 .htaccess 文件:

redirect 301 / http://example.com/stuff

有什么建议吗?

4

2 回答 2

5

请参阅重定向指令的文档

然后任何以 URL-Path 开头的请求都会在目标 URL 的位置向客户端返回一个重定向请求。匹配的 URL-Path 之外的其他路径信息将附加到目标 URL。

使用 aRedirectMatch代替:

RedirectMatch 301 ^/$ http://example.com/stuff
于 2009-11-18T13:03:04.237 回答
3

重定向指向以给定模式开头的任何内容。

采用:

RedirectMatch 301 ^/$ http://example.com/stuff

这需要一个正则表达式,因此您可以使其更具体。

于 2009-11-18T13:02:15.480 回答