3

この質問https://stackoverflow.com/a/7086364/744610に従って、iis express から単純な Hello World php サイトを実行しようとしました。

しかし、iis からエラー 500 が発生し続け、cmd でお気に入りのアイコンに関する 404 エラーが表示されます。

500 エラーからの詳細情報

Detailed Error Information:
Module     FastCgiModule
Notification       ExecuteRequestHandler
Handler    PHP-FastCGI
Error Code     0x80070002
Requested URL      http://localhost:32701/index.php
Physical Path      c:\myphpsite\index.php
Logon Method       Anonymous
Logon User     Anonymous
Request Tracing Directory      C:\Users\user\Documents\IISExpress\TraceLogFiles\PHPTEST

物理パスで再確認したのは確かに正しいです。

コマンド:

Request started: "GET" http://localhost:32701/index.php
Request ended: http://localhost:32701/index.php with HTTP status 500.0
Request started: "GET" http://localhost:32701/favicon.ico
Request ended: http://localhost:32701/favicon.ico with HTTP status 404.0
Request started: "GET" http://localhost:32701/index.php
Request ended: http://localhost:32701/index.php with HTTP status 500.0
Request started: "GET" http://localhost:32701/favicon.ico
Request ended: http://localhost:32701/favicon.ico with HTTP status 404.0

f5'ing を数回試したので、繰り返しです。

私のindex.php

<html>
<body>
<?php
echo "Hello world";
?>
</body>
</html>
4

1 に答える 1

0

PHP で単純に Web Matrix を使用してみませんか。

于 2013-04-10T16:49:37.283 に答える