PHP环境搭建好了以后,运行简单的PHP代码,在网页上没有显示:
<html>
<head>
<style></style>
</head>
<body>
<h1> 1. Read A file If success, return the size </h1>
<?php
echo readfile("..docwebdictionary.txt");
?>
</body>
</html>
在头部,HTML标签前添加:
<?php
ini_set("display_errors", "On");
error_reporting(E_ALL);
?>
网页显示:
HTTP错误500.21-错误模块“FastCgiModule”解决办法
处理程序“PHP_via_FastCGI”在其模块列表中有一个错误模块“FastCgiModule”
在网上搜到同样的问题的文章:https://www.xxkt.org/9014/, 设置添加ISS的CGI模块就好了。
具体操作如下: