错误处理和搜索引擎

发布于 2024-12-08 07:58:48 字数 234 浏览 1 评论 0原文

我刚刚将页面结构从

eg

/my_page.php

更改为

/my_page/

,但现在搜索引擎上的所有缓存页面都给出了404..

我该如何处理它们?是否可以将所有 404 直接重定向到域 www.domain.com 并同时将 301 重定向发送回搜索引擎?

I have just changed my page structure from

eg

/my_page.php

to

/my_page/

but now all cached pages on search engines gives 404..

how can I handle them? is it possible to redirect all 404 to directly to the domain www.domain.com and in the same tiem send back a 301 redirect to the search engine?

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

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

发布评论

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

评论(1

嘿咻 2024-12-15 07:58:48

在 htaccess (如果可用)或虚拟主机的配置中尝试以下操作:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*\.php$ /$1/[R=301,L]

Try the following in htaccess (if available) or the virtual host's config:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*\.php$ /$1/[R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文