在 IIS 7.5 上安装 PHP 后出现 404 错误
我已经安装了 PHP 管理器。但是当我尝试访问 PHPinfo 时。我得到以下屏幕。
我该怎么办?
I have installed PHP manager. But then when I try to access PHPinfo. I got the following screen.
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EquinoX,创建一个名为 C:\inetpub\wwwroot\testsite 的目录,并在该目录中放置一个名为 test.php 的文件,其中包含
然后,您应该能够通过
输入http://localhost/testsite/test.php
在您的文件中 来运行它浏览器窗口。
EquinoX, create a directory called C:\inetpub\wwwroot\testsite, and in that directory put a file called test.php which contains
<?php echo phpinfo(); ?>
You should then be able to run this by typing
http://localhost/testsite/test.php
in your browser window.