index.php 225 B

12345678
  1. <?php
  2. // Try to handle it with the upper level index.php. (it should know what to do.)
  3. if(file_exists(dirname(dirname(__FILE__)) . '/index.php')){
  4. include (dirname(dirname(__FILE__)) . '/index.php');
  5. }else{
  6. exit;
  7. }
  8. ?>