Answers to your questions:
(1) Yes! It's a fresh vB 3.0.7 with only mod_rewrite applied to it. In addition, it only contains templates that were changed. That means that if you have your own style with a custom CSS, and header and footer templates edited, you can merge it right in there, and it will work.
(2) To make your archive work like a sitemap, where the links to the threads redirect to your *real* forum threads (mod_rewritten versions, of course!) then make the following two changes to your archive/index.php file. (Just as in the above tutorial, replace the first line with the second line)
[html]
echo "<p class=\"largefont\">$vbphrase[view_full_version] : <a href=\"$vboptions[bburl]/forumdisplay.php?f=$foruminfo[forumid]\">$foruminfo[title]</a></p>\n<hr />\n";
echo "<p class=\"largefont\">$vbphrase[view_full_version] : <a href=\"../../forum$foruminfo[forumid].html\">$foruminfo[title]</a></p>\n<hr />\n";
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";
echo "\t<li><a href=\"../../thread$thread[threadid].html\">$thread[title]</a>" . iif($pda, " <i>(" . construct_phrase($vbphrase['x_replies'], $thread['replycount']) . ")</i>") . "</li>\n";
[/html]
(3) There is another version of this hack (also in the Web Hosting Tutorials section of this site) that uses keyword-rich URLs such as my-forum-name.html as opposed to forum123.html. (It's an older version, however, from 3.03 I believe). In any case, what I choose to do instead, is somewhere in the navbar template, add the code:[html]<h1>$foruminfo[title]</h1>[/html] and then use CSS to make h1 { } look anyway that I want (so that it's not enormous.) You see, Google puts weight on text emphasized in header h1 and h2 tags.
Administrator
Staff Writer
Reputation Points: 1422
Solved Threads: 162
The Queen of DaniWeb
Offline 13,645 posts
since Feb 2002