選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

server.php 424B

123456789101112
  1. <?php
  2. $uri = urldecode(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
  3. // This file allows us to emulate Apache's "mod_rewrite" functionality from the
  4. // built-in PHP web server. This provides a convenient way to test a Lumen
  5. // application without having installed a "real" server software here.
  6. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
  7. return false;
  8. }
  9. require_once __DIR__.'/public/index.php';