index.php 171 B

123456789
  1. <?php
  2. /**
  3. * Redirect to public directory
  4. * This file serves as the main entry point and redirects visitors to the public site
  5. */
  6. header('Location: public/');
  7. exit;
  8. ?>