如何使用htaccess文件将文件夹的所有页面重定向到某个页面?

时间:2011-05-27 00:03:53

标签: .htaccess

我有一个gallery文件夹。然后我删除了它。但是,Google网站管理员工具下的所有网页仍显示为“无法找到”。我想将该文件夹的所有页面重定向到某个页面。我该怎么办?

1 个答案:

答案 0 :(得分:1)

这会将所有http://host/directory/anypage.html重定向到http://host/somepage.html

RewriteEngine On
RewriteBase /
RewriteRule ^directory/.+\.html$ somepage.html