我有1到1700页每页包含20个主题.我从谷歌网站管理员博客阅读关于SEO友好分页的教程使用rel ='next'和rel ='prev'属性.
但我的分页网址应该如何更好的搜索引擎优化.
FOR EXAMPLE:
// im Using Zend Framework
//Default URL for threads is
http://domain.com/Movies/Action/page/3/
// I changed this URL for better SEO to
http://domain.com/ActionMovies/pagenumber
Run Code Online (Sandbox Code Playgroud)
请建议我使用谷歌BOT更友好的分页URL的结构应该是什么.
我应该在URL中使用URI查询符号(?,&),像这样
http://domain.com/movies=action&page=3
http://domain.com/movies=action
http://domain.com/movies=drama
// OR
http://domain.com/ActionMovies/3/
// OR
http://domain.com/Movies/Action/page/3
Run Code Online (Sandbox Code Playgroud)