a> 30f7226d9a first commit 3 年之前 tailwind-color-palette 30f7226d9a first commit 3 年之前 tailwindcss 30f7226d9a first commit 3 年之前 thenify 30f7226d9a first commit 3 年之前 thenify-all 30f7226d9a first commit 3 年之前 to-regex-range 30f7226d9a first commit 3 年之前 tr46 30f7226d9a first commit 3 年之前 ts-interface-checker 30f7226d9a first commit 3 年之前 uglify-js 30f7226d9a first commit 3 年之前 underscore 30f7226d9a first commit 3 年之前 upper-case 30f7226d9a first commit 3 年之前 util-deprecate 30f7226d9a first commit 3 年之前 valid-data-url 30f7226d9a first commit 3 年之前 web-resource-inliner 30f7226d9a first commit 3 年之前 webidl-conversions 30f7226d9a first commit 3 年之前 whatwg-url 30f7226d9a first commit 3 年之前 wrap-ansi 30f7226d9a first commit 3 年之前 wrappy 30f7226d9a first commit 3 年之前 y18n 30f7226d9a first commit 3 年之前 yallist 30f7226d9a first commit 3 年之前 yaml 30f7226d9a first commit 3 年之前 yargs 30f7226d9a first commit 3 年之前 yargs-parser 30f7226d9a first commit 3 年之前 .yarn-integrity 30f7226d9a first commit 3 年之前 louise/louise-tna - Gogs: Simplico Git Service

暫無描述

server.php 560B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Laravel - A PHP Framework For Web Artisans
  4. *
  5. * @package Laravel
  6. * @author Taylor Otwell <taylorotwell@gmail.com>
  7. */
  8. $uri = urldecode(
  9. parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
  10. );
  11. // This file allows us to emulate Apache's "mod_rewrite" functionality from the
  12. // built-in PHP web server. This provides a convenient way to test a Laravel
  13. // application without having installed a "real" web server software here.
  14. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri))
  15. {
  16. return false;
  17. }
  18. require_once __DIR__.'/public/index.php';