HybridUrlCodingStrategy 与 google 不兼容?
我们在 Wicket 应用程序中使用 MixedParamHybridUrlCodingStrategy
以便让 google 解析漂亮的 url。 Url 模式:
http://host/domain-objecs/{id}/a-long-title-for-my-object
页面有一些 ajax 有状态组件。
当有人打开这些页面之一时,他会自动重定向到:
http://host/domain-objecs/id/a-long-title-for-my-object.0
这是谷歌的一个问题,表明由于重定向而导致抓取错误。
您对如何解决这个问题有什么想法吗?当用户代理是机器人时不重定向?
We use MixedParamHybridUrlCodingStrategy
in our Wicket application in order to have pretty url parsed by google. Url pattern :
http://host/domain-objecs/{id}/a-long-title-for-my-object
The page has some ajax stateful components.
When someone opens one of theses pages he is automatically redirected on :
http://host/domain-objecs/id/a-long-title-for-my-object.0
This is a problem for google which indicates crawling error due to the redirect.
Have you any ideas of how to resolve this problem? Not redirecting when the user-agent is a robot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我通过使页面无状态解决了这个问题。
我使用了框架 jolira http://code.google.com/p/jolira- tools/wiki/stateless 来替换我的链接和 statelessForm 来代替经典表单。
Finally I solved the problem by making my page stateless.
I used the framework jolira http://code.google.com/p/jolira-tools/wiki/stateless to replace my links and a statelessForm in place of a classical form.