I need all pages on my site to be redirected to home.php with query string and the page as parameter
examples:
www.site.com/abcd
-> www.site.com/home.php?page=abcd
www.site.com/abcd/file.php
-> www.site.com/home.php?page=abcd/file.php
www.site.com/file.php?a=b&c=d
-> www.site.com/home.php?page=file.php&args="a=b&c=d"
You could put this in your .htaccess file:
This will do what you want, except for the parameters passed, they will show up in there original form: