Okey, i found my answer;
i found this line on "archive/index.php" file:
PHP Code:
//echo "\t<li><a href=\"" . (!SLASH_METHOD ? 'index.php?' : '') . "t-$thread[threadid].html\">$thread[title]</a>" . iif($pda, " <i>(" . construct_phrase($vbphrase['x_replies'], $thread['replycount']) . ")</i>") . "</li>\n";
then change to:
PHP Code:
echo "\t<li><a href=\"" . (!SLASH_METHOD ? 'index.php?' : '') . "http://www.mydomain.com/showthread.php?t=$thread[threadid]\">$thread[title]</a>" . iif($pda, " <i>(" . construct_phrase($vbphrase['x_replies'], $thread['replycount']) . ")</i>") . "</li>\n";
(Sorry for wrong forum category, i didnt do it on purpose)