SEO url 动态降级
我正在使用 phpbb 论坛,带有一些 seo 插件,它将我所有的动态 url "viewtopic.php?=1234"
转换为 SEO url,例如 "/super-jackpot-t821.html"
。我很高兴。
但现在的问题是,我已经移动了主机,将 phpbb 移动到子文件夹并升级到最新的 phpbb。现在该插件停止工作,并且所有 url 都已被 google、yahoo 等索引。
所以我在想是否可以 301 将 SEO url 重定向回正常 url?可能会使用 HTACCESS 选择最后一个 821
号 seo url 并将其返回到 viewtopic.php?t=821
???
谢谢。
I am using phpbb forum, with some seo plugin, which turned all my dynamic urls "viewtopic.php?=1234"
to SEO urls such as "/super-jackpot-t821.html"
. I was happy with it.
but now problme is, i have moved host, moved phpbb to sub folder and upgraded to latest phpbb. Now that plugin stopped working and all the urls are already indexed by google, yahoo etc.
So i was thinking is it possible to 301 redirect SEO urls back to normal urls? May be picking the last 821
number of seo url using HTACCESS and turning it back to viewtopic.php?t=821
???
thankx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我找到的 htaccess 指南。
http://www.garnetchaney.com/htaccess_tips_and_tricks.shtml
匹配 0 到 9999 正则表达式应该为 ^[0-9]{1,4}$
Here's a htaccess guide i found.
http://www.garnetchaney.com/htaccess_tips_and_tricks.shtml
to match 0 to 9999 the regex should be ^[0-9]{1,4}$