Hi,
I have a problem
my forum is located in a folder inside the main for example
http://www.domain.com/forum
how should I edit the .htaccess ?
I did the following but
it does not work,
Options +FollowSymlinks
RewriteEngine On
RewriteBase /forum/
RewriteRule ^([^/]+)/([^/]+)-([0-9]+)\/$ /forum/showthread.php?t=$3 [QSA,L]
RewriteRule ^f([0-9]+)\/$ /forum/forumdisplay.php?f=$1 [QSA,L]
RewriteRule ^f([0-9]+)\/([a-z]+)([0-9]+).html$ /forum/forumdisplay.php?f=$1&page=$3 [QSA,L]
RewriteRule ^([^/]+)/([^/]+)-([0-9]+)\/([a-z]+)([0-9]+).html$ /forum/showthread.php?t=$3&page=$5 [QSA,L]
RewriteRule ^([^/]+)/post([0-9]+).html$ /forum/showpost.php?p=$2&postcount=$2 [QSA,L]
RewriteRule ^([^/]+)/([^/]+)-([0-9]+)\/sendmessage.php?$ /forum/sendmessage.php [L]
RewriteRule ^f([0-9]+)\/misc.php$ /forum/misc.php [QSA,L]
If anyone can throw a line on how to fix it, will be appreciated