1

使用默认配置,PHP 的内置服务器将 .phtml 文件视为静态资源。有没有办法让它将它们作为常规的 .php 脚本处理?

4

1 回答 1

3

使用路由器脚本,您应该能够检查 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

于 2015-03-07T23:06:01.947 回答