Reputation: 1
why in the bandidos wont this work? 404 not found
RewriteRule ^threads/cats/([0-9]+)$ /forum/cats.php?id=$1
apache error log:
[Thu Jan 20 20:18:18 2011] [error] [client 127.0.0.1] File does not exist: C:/wamp/www/threads
[Thu Jan 20 20:18:18 2011] [error] [client 127.0.0.1] File does not exist: C:/wamp/www/favicon.ico
Upvotes: 0
Views: 1262
Reputation: 186762
Try prefixing it with a /
and add an ?
just incase it's not necessary.
RewriteRule ^/?threads/cats/([0-9]+)$ /forum/cats.php?id=$1
Upvotes: 1