PHP 5.4.0 引入了内置的 Web 服务器。这应该是您正在寻找的。
编辑:似乎可以在其上运行 wordpress
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
chdir($root);
$path = '/'.ltrim(parse_url($_SERVER['REQUEST_URI'])['path'],'/');
set_include_path(get_include_path().':'.__DIR__);
if(file_exists($root.$path))
{
if(is_dir($root.$path) && substr($path,strlen($path) - 1, 1) !== '/')
$path = rtrim($path,'/').'/index.php';
if(strpos($path,'.php') === false) return false;
else {
chdir(dirname($root.$path));
require_once $root.$path;
}
}else include_once 'index.php';
将此脚本放入您的项目中,然后开始!
$ php -S localhost:9393 -t /path/to/wordpress router.php
如果您将 router.php 放在您的 wordpress 目录中,请不要使用 -t 标志。那就是指定一个替代文档根。