htaccess帮助需要重定向旧的已删除链接

时间:2015-02-14 09:51:45

标签: .htaccess redirect web

我有一个网站(例如mysite.com),目录下的旧版本网站仍然出现在搜索引擎中(例如mysite.com/oldsecton/something.html)。这些链接中有太多要从搜索引擎中删除。

  • 我希望/ oldsection中的所有内容都重定向回mysite.com/index.html
  • 即。 / oldsection中的所有内容都应该转到index.html找到一个目录路径
  • 我尝试了内部/ oldsection中的.htaccess的不同变体,例如

      ErrorDocument 404 ../index.html
      ErrorDocument 404 mysite.com/index.html
      etc...
    

它们似乎都没有成功。

这应该是一个简单的任务,但我不断收到内部服务器错误或ErrorDocument错误。

1 个答案:

答案 0 :(得分:0)

内部/oldsection/.htaccess有以下代码:

RewriteEngine On

RewriteRule ^ /index.html [L,R=302]