I had to modify a couple things in the links to get everything working properly.
This may apply to 2.2.2, however I'm not positive:
In my .htaccess file I have:
Quote:
RewriteEngine on
RewriteRule ^f([0-9]+)/?$ forumdisplay.php?forumid=$1&s=$2 [L]
RewriteRule ^t([0-9]+)\.html$ showthread.php?threadid=$1 [L]
RewriteRule ^t([0-9]+)-([0-9]+)\.html$ showthread.php?threadid=$1&perpage=15&pagenumber=$ 2 [L]
RewriteRule ^f([0-9]+)-([0-9]+)/$ forumdisplay.php?forumid=$1&daysprune=1000&sortord er=&sortfield=lastpost&perpage=40&pagenumber=$2 [L]
RewriteRule ^[ft]([0-9]+)/s([^/]*)/(.+)$ /$3 [L]
|
In forumhome templates I have:
<a href="$bburl/midiboard/f$forum[forumid]">
(midiboard is subdirectory of site)
In forumdisplay templates I have:
<a href="$bburl/f$forum[forumid]">
And in forumdisplaybit:
<a href="$bburl/t$thread[threadid].html">
Also the base href tag in the head include needed an extra trailing slash to make images work. Other then that everything seems to be okay.