我可以使用 PHP 内置服务器加载 .phtml 文件吗?

Can I load .phtml files using PHP builtin server?

使用默认配置,PHP 的内置服务器将 .phtml 文件视为静态资源。有什么方法可以让它像常规 .php 脚本一样处理它们?

使用路由器脚本,您应该能够检查 phtml,然后只包含该文件。

<?php
if (preg_match('/\.(?:php|phtml)$/', $_SERVER["REQUEST_URI"])) {
    require('./' . $_SERVER["REQUEST_URI"]);
    return;
}
return false;

http://php.net/manual/en/features.commandline.webserver.php#example-405