I have all internal links as a MVC scheme without .php extensions. Example: http://examplesiste.com/login will detect "login" using this algorithm:
$page = substr($_SERVER['REQUEST_URI'], 1);
and load footer, header and detected "login.php" between. Though the final link will look like this: http://examplesidte.com/login (without .php)
How should I pass GET variables? with php extenstion it's quite obvious - http://examplesidte.com/login.php?id=abc666 but , of course http://examplesiste.com/login?id=abc666 won't work any suggestions?