htaccess and mod_rewrite
Posted by: kjmatthews
Posted on: 2005-02-25 23:28:00
I am trying to rewrite the general url http://www.digitalovertone.com/logue/00001/ to serve the page http://www.digitalovertone.com/logue/?postid=00001. The rewrite rule I am currently using is:
RewriteRule ^/logue/([0-9]+)/$ /logue/?postid=$1 [L]
This merely returns a 404 error when typing the first URL above. Can anyone point out where I am going wrong?
Many thank.