301 重定向 - 高级?

发布于 2024-11-05 21:18:16 字数 303 浏览 0 评论 0原文

我的情况是,我的网站上每个页面都有两个版本 - 数量达到数千个......现在这给谷歌带来了各种各样的问题,由于重复的内容,我正在删除搜索结果。这是由于在我的网站上启用“SEO 友好 URL”而创建的。

有没有一种方法可以将所有以 Brands.php 开头的页面重写为 SEO 友好版本?例如 /products.php?product=Oil-Pump-Star 到 /products/oil-pump-star/....无需手动浏览每个 URL...

如果这令人困惑,我深表歉意 - 我发现很难把将具体情况写成文字!

任何意见表示赞赏!

I am in a situation where there are TWO version sof each page on my site - which runs into thousands....now this is causing all sorts of problems with Google, I am dropping down the search results due to duplicate content. This was created as a result of enabling "SEO Friendly URLs" on my site.

Is there a way that I can rewrite ALL pages taht start with say brands.php to their SEO friendly version? e.g. /products.php?product=Oil-Pump-Star to /prducts/oil-pump-star/....without having to go through each URL manually...

Apologies if this is confusing - I find it hard to put the exact situation into written words!

Any input is appreciated!

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

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

发布评论

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

评论(2

若水微香 2024-11-12 21:18:16

看起来您正在使用 Joomla CMS。您可以使用 rel="canonical" 来解决此问题,但不幸的是,这必须手动完成。 Google 仍然建议使用 301 重定向,并仅在无法进行 301 的情况下建议使用 rel="canonical"。

我会让你决定什么对你来说是最好的。

this looks like you are using a Joomla CMS. you could use rel="canonical" to get away with this, but this will have to be done manually unfortunately. Google still suggests using a 301 redirect, and recommends a rel="canonical" only where 301 is not possible.

I will let you decide whats best for you.

梦境 2024-11-12 21:18:16

如果不知道您的系统设置的 URL 类型,则很难为您提供示例。但是,根据您给出的示例,您可以执行以下操作:

RewriteRule ^([0-9a-zA-Z-]+).php?([0-9a-zA-Z]+)=([0-9a-zA-Z_-]+)$                   $1/$3 [NC]

我尚未测试它,因此可能需要一些调整。您需要相应地调整您的规则,以处理您尝试重组的 URL。

It's hard to give you an example without knowing the type of URLs your system is setup for. However, based on the example you gave, you could do something like this:

RewriteRule ^([0-9a-zA-Z-]+).php?([0-9a-zA-Z]+)=([0-9a-zA-Z_-]+)$                   $1/$3 [NC]

I have not tested it, so it may need some tweaking. You'll need to adjust your rules accordingly to work with the URLs you are trying to restructure.

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