HTACCESS - REDIRECT

时间:2011-04-26 09:44:13

标签: .htaccess

我有一些旧文件:homepage.html和home.html,我确信有人为他们添加了书签。所以我想将它们重定向到父网址。我看过谷歌,但似乎没有达到我的预期。

例如www.nicetomeetyou.com/home.html和www.nicetomeetyou.com/homepage.html =>这些文件不存在。

我希望将它们重定向到http://www.nicetomeetyou

我该如何解决?感谢

2 个答案:

答案 0 :(得分:3)

另一种可能性是在您的.htaccess文件中使用RedirectPermanent,它只允许您定位特定文件并让客户端知道重定向是永久性的。如果您有许多文件,则可以使用正则表达式将所有文件重定向到一行。

有关详情或here,请参阅official documentation

以下是一个例子:

RedirectPermanent /home.html http://example.com/

答案 1 :(得分:2)

您的.htaccess文件应如下所示:

RewriteEngine ON
RewriteRule ^homepage.html$ index.html
RewriteRule ^home.html$ index.html