As some of you may know, Google recently announced that you can now start using rel="next" and rel="prev" to indicate what the next and previous pages of paginated content are. Very useful for phpBB boards!
The implementation is simple:
On the first page, http://www.example.com/article?story=abc&page=1, you’d include in the <head> section:
Code: Select all
<link rel="next" href="http://www.example.com/article?story=abc&page=2" />
Code: Select all
<link rel="prev" href="http://www.example.com/article?story=abc&page=1" />
<link rel="next" href="http://www.example.com/article?story=abc&page=3" />
Code: Select all
<link rel="prev" href="http://www.example.com/article?story=abc&page=2" />
<link rel="next" href="http://www.example.com/article?story=abc&page=4" />
Code: Select all
<link rel="prev" href="http://www.example.com/article?story=abc&page=3" />
Many thanks,
Alec