Guest User

Untitled

a guest
Dec 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. if($_SERVER['QUERY_STRING'] == "" || $_SERVER['QUERY_STRING'] == "/") {
  3. header('Location:?/home');
  4. }
  5.  
  6. $location = explode('/',$_SERVER['QUERY_STRING']);
  7.  
  8. if(file_exists('./pages/'.$location[1].'.php')) {
  9. include('./pages/'.$location[1].'.php');
  10. } else {
  11. include('./pages/404.php');
  12. }
  13. ?>
Add Comment
Please, Sign In to add comment