hi,
robots.txt exclusions
Code:Disallow: forums/post-*.html$
Disallow: forums/updates-topic.html*$
Disallow: forums/stop-updates-topic.html*$
Disallow: forums/ptopic*.html$
Disallow: forums/ntopic*.html$
Disallow: forums/post-*.html$ because
about*.html$ belongs to the same thread and should prevent you from getting double indexed content.
example page
http://www.able2know.com/forums/ask-about36.html
our thread
left link in thread ->
phpBB robots.txt tutorial
Code:
http://www.able2know.com/forums/viewtopic.php?t=22587
works with
Code:RewriteRule ^about([0-9]*).html&highlight=([a-zA-Z0-9]*) viewtopic.php?t=$1&highlight=$2 [L,NC]
right link in thread -> Tue Nov 23, 2004 2:28 pm
Code:
http://www.able2know.com/forums/viewtopic.php?p=1033728#1033728
works with
Code:RewriteRule ^post-([0-9]*).html&highlight=([a-zA-Z0-9]*) viewtopic.php?p=$1&highlight=$2 [L,NC]
this exclusion (Disallow: forums/post-*.html$) does not work in my case, so i allways add "noindex" if google comes through the right link.
Disallow: forums/ptopic*.html$ and
Disallow: forums/ntopic*.html$
should also produce double content, if
Disallow: forums/post-*.html$
does not work, but i have not seen that up to know.
so you only need to do this if you have post-xx.html
and aboutxx.html
in your results (allinurl:www.domain.tld)
all my changes are additionally to Craven's SEO mod, that seems to be the best seo-mod for phpBB.
other changes
http://www.able2know.com/forums/viewtopic.php?t=38321
regards