I recently changed hosts.. and reinstalled everything, but I can't get mod_rewrite to work again.
I have wordpress installed as well, last time I had to put the mod_rewrite info in the same htaccess file as my wordpress, for it to work correctly.. I think it may just be something with my wordpress that is messing it up, but not positive.
one thing that's different about my new host is the mysqlhost isn't "localhost".. I have the correct hostname put in the setup_options.php though.
anyways do you know how to fix my problem?
you can see the forums here:
http://jonindie.com/minibb/index.phpfolders are:
jonindie.com/ (main folder where wordpress is & htaccess file)
jonindie.com/minibb (minibb main folder)
htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# BEGIN minibb
RewriteEngine On
RewriteRule ^index\.html$ ./index.php?mdrw=on
RewriteRule ^manual\.html$ ./index.php?action=manual&m
drw=on
RewriteRule ^([0-9]+)_([0-9]+)_([-0-9]+)\.html$ ./index.php?action=vthread&forum=$1&topic=$2&page=$3&mdrw=on
RewriteRule ^([0-9]+)_([-0-9]+)\.html$ ./index.php?action=vtopic&forum=$1&page=$2&mdrw=on
# END minibb