Htaccess problem (need everything but index.php to go to another page)

Soldato
Joined
4 Jul 2004
Posts
2,647
Location
aberdeen
Hello,
I need it so when someone enters example.com or example.com/index.php it goes to index.php, otherwise it must go to redirect.php

I had this:

RewriteRule ^(.*).php$ index.php?id=$1 [L]
RewriteRule ^(.*)$ redirect.php?id=$1 [L]

But that seems to redirect everything to index.php...?
 
Back
Top Bottom