I am running a php project on IIS server in which i included the
 
isset($_GET['url'])
 
method but its not redirecting the right location which caused only same result 404 page not found!
wherever the same code is working fine on apache server.
 
How do i solve this issue.
 
What I have tried:
  1. include('../connect.php');  
  2. if(isset($_GET['url']) && ($_GET['url']!=''))  
  3. {  
  4. $url=trim($_GET['url']);  
  5. }  
  6. ?>  
  7.   
  8. "zxx">  
  9.   
  10. Account | Ebasq  
  11. "viewport" content="width=device-width, initial-scale=1">  
  12. "Content-Type" content="text/html; charset=utf-8" />  
  13. "keywords" content="" />  
  14.   
  15. include('../files/include/files.php'); ?>  
  16.   
  17. include('../files/include/top-line.php'); ?>  
  18. include('header.php'); ?>  
  19. if($url=="password")  
  20. {  
  21. ?>  
  22. include('change-password.php'); } ?>  
  23. if($url=="order-history")  
  24. {  
  25. ?>  
  26. include('order-history.php'); }?>  
  27. if($url=="")  
  28. {  
  29. ?>  
  30. include('data.php'); ?>  
  31. }  
  32. ?>  
  33. include('../files/include/footer-account.php'); ?>  
  34. include('../files/include/footer-files.php'); ?>  
  35.