Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 PHP 内置服务器用于一个小型个人项目。
我只是想知道是否有任何方法可以将所有请求重写为一个脚本,然后可以使用$_SERVER['REQUEST_URI']类似的脚本来处理不同的事情。
$_SERVER['REQUEST_URI']
或者,有没有办法为 PHP 服务器设置 404 ErrorDocument?
是的,当您启动内置服务器时,您可以指定一个路由器脚本(而不是 Apache .htaccess 文件,例如)。
$> php -S localhost:8080 YourRouterDocument.php
文档