at the moment minibb generates different urls for the same main forums like: ../forum/index.php and ./forum/index.php? Than ? at the end creates a different url and confuses crawlers. You can see the difference in this forum: your index.php file has a pagerank of 6, and index.php? has a pagerank of 4
I suggest changing index.php line: if(!isset($GLOBALS['indexphp'])) $indexphp='index.php?'; else $indexphp=$GLOBALS['indexphp'];
Remove the ? and search and replace all {$indexphp}action to {$indexphp}?action in all files
That change will make the forum more search engine friendly. |