|
Here's what you need to do (from the manual): Quote: 2. Put the mod_rewrite rules in the .htaccess file in your forum directory. See the htaccess_example.txt file for the default way to do it:
RewriteEngine On
RewriteRule ^forum([0-9]+)\.htm$ ./index.php?a=vforum&f=$1
RewriteRule ^forum([0-9]+)-([0-9]+)\.htm$ ./index.php?a=vforum&f=$1&p=$2
RewriteRule ^article([0-9]+)\.htm$ ./index.php?a=vtopic&t=$1
RewriteRule ^article([0-9]+)-([0-9]+)\.htm$ ./index.php?a=vtopic&t=$1&p=$2
|