Rails 3 的规范无 www URL?
您对此解决方案有何看法?我们的想法是让无 www 版本成为规范版本。所以我们简单地去掉“www”。来自请求网址:
!= '<link rel="canonical" href="' + request.url.gsub(/www\./, '') + '" />'
有问题吗?
What do you think about this solution? The idea is to make the no-www version as the canonical one. So we simply strip out the 'www.' from the request url:
!= '<link rel="canonical" href="' + request.url.gsub(/www\./, '') + '" />'
Any problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看Rack Canonical Host。我认为它正是您所寻找的。
Take a look at Rack Canonical Host. I think it does exactly what you are looking for.