index.php 333 B

12345678910111213
  1. <?php
  2. if (preg_match('/^\/$/', $_SERVER['REQUEST_URI']) && strlen($_SERVER['REQUEST_URI'] ) == 1) {
  3. include_once "./official/fun.php";
  4. $url = returnUrl();
  5. header('HTTP/2.0 301 Moved Permanently');
  6. header('Location:' . $url);
  7. }
  8. include_once __DIR__ . '/app/laravel.php';
  9. include_once __DIR__ . '/app/yunshop.php';