注册 | 登录 忘记密码? 51cto首页 | 博客 | 论坛 | 招聘
热点文章 Pass4sure CCNA640-802 v3..
 帮助

ROR seo系列 | 以.html结尾的url


2007-09-20 10:29:44
 标签:SEO ROR   [推送到技术圈]

版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://blackanger.blog.51cto.com/140924/43355
好的静态url对seo也很有帮助,就算给个假的静态url,也比那些包含?等特殊符号的url好,更容易让搜索引擎读取。ROR中比较容易实现:

在routes.rb文件中:
map.connect ':controller/:action/:id.html', :format => 'html'

还有一种更好的方法:
ApplicationController中:
def default_url_options(options)
{ :format => 'html' }
end

routes.rb中就可以这么写:
map.connect ':controller/:action/:id.:format'

本文出自 “{ :Alex Space => " Ruby Notes " }” 博客,请务必保留此出处http://blackanger.blog.51cto.com/140924/43355





    文章评论
 
 

发表评论

昵   称:
验证码:  点击图片可刷新验证码  博客过2级,无需填写验证码
内   容: