301将文件夹重定向到单个页面

时间:2014-11-27 07:30:19

标签: .htaccess redirect

我的网站上有一个已被取代的文件夹,我想将尝试访问此文件夹中的任何文件重定向到当前主页。

我在这里读了很多问题,但似乎没有一个问题。

我在.htaccess中尝试了各种各样的东西,但似乎总是将文件名附加到重定向地址。

redirect 301 old/$ www.example.com/index.html
redirect 301 old/ www.example.com/index.html
redirect 301 ^old/ www.example.com/index.html

我见过RewriteRule的各种提及。我需要使用它吗?

1 个答案:

答案 0 :(得分:0)

您可以在/old/.htaccess文件中使用此代码:

RewriteEngine On

RewriteRule ^ http://www.example.com/index.html [L]

OR。来自root .htaccess使用:

RewriteEngine On

RewriteRule ^old(/.*)?$ http://www.example.com/index.html [L,NC]