I have successfully created my mod_rewrite rule to change all dynamic URLs on the top level of the site, but now i need to create a rule for a second level, and i think later down the line i might need a second, second level of rewrites.
At the moment i have this
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)$ index.php?subj=$1
And this helps to change /index.php?subj=home to /home as iut does for all other pages such as /contact /about /events and so on.
But now I have created sub pages under events and therefore need to change /events.php?event=event-name to /event-name. But when i add another rule it messes up the whole site. What i tried to do is this
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)$ index.php?subj=$1
RewriteRule ^(.+)$ event.php?event=$1
But that didnt work.
But on top of all that i want to redirect index.php and / (the root) to /home
Could anyone please show me the correct rules as I have searched around but I just can't seem to get it right.
Many thanks in advance :)
Cheers
UPDATE: Thanks for all your help so far, ive tried everything but can't seem to get it right. As suggested by Ben I will give a bit more info on the URLs. Right now the entire site is sitting in a sub-directory as for now its still under development, so for now it is in mydomain.com/newwebsite/event.phpevent=2 But the .htaccess file currently in the root folder of the development site so it is in /newwebsite directory. So the URL that i am trying to write would be mydomain.com/newwebsite/event/2
You notice it says '2' and that is simply the page/event id. further down the line it will not be the id but rather its title.