Quote:
Originally posted by cyc
Current rewrite rules from the httpd.conf file are:
RewriteEngine on
RewriteRule ^/f([0-9]+)/?$ /forumdisplay.php?forumid=$1 [L]
goto http://www.cyclingforums.com/f47 and click on a number in the top thread.
cheers!
|
Your rewrite rule is waiting for:
http://www.cyclingforums.com/f47/
not
http://www.cyclingforums.com/f47
So either you need to add a '/' to your template or just make your rewrite rule to:
RewriteRule ^/f([0-9]+)$ /forumdisplay.php?forumid=$1
Your rewrite rule is looking for:
URL matches (between "^" and "$") which is /f123/xxx
Try
^/f([0-9]+)$ or ^f([0-9]+)$