OK so here's my current htaccesss:
Code:
RewriteEngine On
RewriteBase /
RewriteRule ^wiki.php(.*)$ showwiki.php$1 [L,QSA]
RewriteRule ^showwiki.php?title=(.*)$ wiki/$1 [L,R=301]
RewriteRule ^wiki/Default:(.*)$ wiki/$1 [L,R=301]
RewriteRule ^wiki/(.*)?$ showwiki_proxy.php [L,QSA]
I went through my httpd.conf to make sure rewrite was enabled.
'LoadModule rewrite_module modules/mod_rewrite.so' is uncommented
and
I changed AllowOverride to all
Code:
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
I've enabled simple urls and changed the filename setting from 'showwiki' to 'wiki'.
still getting 404s when I goto website.com/forums/wiki/title
Thanks in advance!
Bookmarks