First of all, thanks a million for that MOD. I intsalled it yesterday on a clean (no other MODs) 2.0.8. It works
numero uno.
I do however noticed a few things, and correct me if I'm wrong.
If all the forums are set to "registered only" for posting and with the MOD, then there's no "watch/unwatch this topic" links as well as no "view previous/next topic" links on a topic page in guest mode. So these lines in robots.txt and .htaccess are therefore useless :
Code:
RewriteRule ^updates-topic([0-9]*).html* viewtopic.php?t=$1&watch=topic [L,NC]
RewriteRule ^stop-updates-topic([0-9]*).html* viewtopic.php?t=$1&unwatch=topic [L,NC]
RewriteRule ^ptopic([0-9]*).* viewtopic.php?t=$1&view=previous [L,NC]
RewriteRule ^ntopic([0-9]*).* viewtopic.php?t=$1&view=next [L,NC]
I think that front slashes are missing in the robots.txt piece of code, so I'm adding them here:
Code:
Disallow: /forums/updates-topic.html*$
Disallow: /forums/stop-updates-topic.html*$
Disallow: /forums/ptopic*.html$
Disallow: /forums/ntopic*.html$
I also noticed that the "Mark all topics read" link is converted to an html extension but isn't this link useless for search engines? So I've added this to my robots.txt:
Code:
Disallow: /forums/mark-forum*.html$
So am I right?
C.