index.php 290 B

1234567891011121314
  1. <?php
  2. /**
  3. ** index.php
  4. **
  5. ** This file simply takes any attempt to view source files
  6. ** and sends those people to the login screen. At this
  7. ** point no attempt is made to see if the person is logged
  8. ** or not.
  9. **/
  10. header("Location:../index.php");
  11. /** pretty impressive huh? **/
  12. ?>