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

发布于 2024-11-10 03:47:46 字数 158 浏览 0 评论 0原文

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

I had a gallery folder. Then I have deleted it. However all pages under it are still shown as "unable to find" under Google Webmasters tools. I want to redirect all pages of that folder to a certain page. How should I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落墨 2024-11-17 03:47:46

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

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

This will redirect all http://host/directory/anypage.html to http://host/somepage.html

RewriteEngine On
RewriteBase /
RewriteRule ^directory/.+\.html$ somepage.html
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文