|
|
Registered User
|
Posts: 13
Join Date: Nov 2005
|
Hey, Its been awhile since I used the script. I am having issues with my urls working after install. Could you look at it for me and let me know what's wrong?
Thanks!
http://www.indoorplantsforum.com/forums/
Here's my .htaccess:
Code:
RewriteEngine On
RewriteRule ^forum([0-9]+)\.htm$ .forums/index.php?a=vforum&f=$1
RewriteRule ^forum([0-9]+)-([0-9]+)\.htm$ .forums/index.php?a=vforum&f=$1&p=$2
RewriteRule ^article([0-9]+)\.htm$ .forums/index.php?a=vtopic&t=$1
RewriteRule ^article([0-9]+)-([0-9]+)\.htm$ .forums/index.php?a=vtopic&t=$1&p=$2
|