Which redirects the users to a php document. The problem I am having is how can I transfer $_REQUEST vars to the php document? Or is this not possible?
Sorry if I didn't explain well. I was trying to find a way to transfer the request vars (post get etc) to the php document. I ended up chaning it to a rewrite rule:
RewriteEngine on
RewriteRule ^([A-Za-z0-9-]+)/?$ /index.php?pageLoader=true&cmd=$1
The only problem with this is that it doesn't accept _ in the URL and I don't know practically anything about patterns, so I don't know how to change it.