[*]Go to the ACP > System Settings > Search Engine Optimization.
[*]Set "Redirect to new friendly URL format" to Yes.
[*]Set "URL Type" to Path Info.
[*]Set "use .htaccess mod_rewrite" to Yes, then open notepad, paste the code below in, save it, rename the file so it's just called .htaccess (no extension) and upload it to your forums root.
<IfModule mod_rewrite.c>Options -MultiViewsRewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENAME} .*.(jpeg|jpg|gif|png)$RewriteCond %{REQUEST_FILENAME} !-fRewriteRule . /public/404.php [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]</IfModule>