Help Wiki Under the Forum Root Viewing Source If your wiki and your forum appear in the same folder (e.g. [I]/forums/[/I] and [I]/forums/wiki/[/I]), you will need to edit up to 1 .htaccess file. If you have not already enabled [I]mod_rewrite[/I] in the file, you can do so by adding the following line: [code]RewriteEngine On[/code] The following line should be the directory path relative to your document root. In the case: [url]http://www.example.com/forums/[/url] [code]RewriteBase /forums/[/code] If the value of Wiki PHP File is not 'showwiki', add the following line: [code]RewriteRule ^FILE.php(.*)?$ showwiki.php$1 [L,QSA][/code] If you have enabled Simplify Wiki Links, add the following line: [code]RewriteRule ^showwiki.php?VAR=(.*)$ FILE/$1 [L,R=301][/code] If you have Simplify Wiki Links enabled, add the following line: [code]RewriteRule ^FILE/DEFAULT:(.*)$ FILE/$1 [L,R=301][/code] If Simplify Wiki Links is NOT enabled, add the following line: [code]RewriteRule ^showwiki.php?VAR=DEFAULT:(.*)$ showwiki.php?VAR=$1 [L,R=301][/code] If you have Simplify Wiki Links enabled, add the following line: [code]RewriteRule ^FILE/(.*)?$ showwiki_proxy.php [L,QSA][/code] Save your .htaccess file, and your wiki URLs should work smoothly. 1,228 characters