Jerzek Jerzewsklo
Jerzek Jerzewsklo

Reputation: 1

rewrite rule 404 not found

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

Answers (1)

meder omuraliev
meder omuraliev

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

Related Questions