在 Laravel 4 的/app/
目录中,有一个名为server.php
. 该文件的内容如下所示:
<?php
$uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$uri = urldecode($uri);
$paths = require __DIR__.'/bootstrap/paths.php';
$requested = $paths['public'].$uri;
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' and file_exists($requested))
{
return false;
}
require_once $paths['public'].'/index.php';
似乎该文件以某种方式用于模仿 Apache 的功能,但是我在Laravel 文档mod_rewrite
中找不到任何提及或使用它的内容。
我目前正在尝试在我不管理的 IIS 服务器上使用 Laravel。我没有能力修改 IIS 上的 URL 重写模块选项(我将来会这样做),但如果可能的话,我想现在就开始使用该框架。这个server.php
文件似乎是一个权宜之计。
如果目的真的是为了模拟 Apache 的功能,任何人都可以阐明server.php
文件的目的以及如何使用/激活它吗?mod_rewrite