i'm trying to define a mod rewrite rule which should work like this: contact.php -> index.php?page=contact
my htaccess file has the following content:
RewriteEngine On
RewriteBase /
RewriteRule ^%1$ index.php?page=%1 [L]
unfortunately this gives me a 404. any ideas what's wrong? thanks