Do I need a rewrite rule or something for this to work?
When I switch it on, then clicking on article links just dumps me back to forumhome with no errors.
Do I need a rewrite rule or something for this to work?
When I switch it on, then clicking on article links just dumps me back to forumhome with no errors.
Yes you need a RewriteRule as mentioned in the Admin Help (or it should be anyway).
It really depends on your particular settings but for example, we use:
Of course those RewriteConds are only necessary if you are using a folder that also serves real files. For most purposes, the two Rules at the end should be sufficient.Code:RewriteCond %{DOCUMENT_ROOT}/vault/$1 -f [OR]
RewriteCond %{DOCUMENT_ROOT}/vault/$1 -d
RewriteRule ^vault/(.*)$ vault/$1 [L,QSA,S=1]
RewriteRule ^vault/(.*)$ showwiki.php?egg=$1 [L,QSA]
RewriteRule ^vault.php(.*)$ showwiki.php$1 [L,QSA]
Be sure that your Wiki PHP file and Title Variable settings match your settings in .htaccess.
Yeah I figured some rewrite was needed, there's no mention of it when clicking the question mark in the admincp
Thanks.