I want to process all the requests to a domain using a single php script.
For example:
www.domain.com/something.php -> would be loading -> www.domain.com/process.php?u=something.php
www.domain.com/anything -> would be loading -> www.domain.com/process.php?u=anything
www.domain.com/sub/dir/x -> would be loading -> www.domain.com/process.php?u=sub/dir/x
But process.php should never open directly on the browser, I want to do like an internal redirection.
Could someone show me how could I use htaccess and mod_rewrite to do this?