1

我安装XAMPP for Windows在我的电脑上。我启动它并检查状态,它说PHP已激活。然后我转到以下目录:C:\inetpub\wwwroot并创建了一个文件名phpinfo.php,其中包含以下内容:

    <?php phpinfo(); ?>

然后我打开我的网络浏览器(我试过Internet ExplorerGoogle Chrome)并输入:

    http://localhost/phpinfo.php 

在地址栏中。我收到以下错误:

Object not found! The requested URL was not found on this server. 
If you entered the URL manually please check your spelling and try again.

If you think this is a server error, please contact the webmaster.

Error 404 localhost 11/10/12 10:03:28 Apache/2.2.21 (Win32)
mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1**

如果我只是输入http://localhost/,我会得到XAMPP startup page很好的。

我仔细检查了我phpinfo.php是否在正确的目录中,并且对我可能做错的其他事情感到茫然。

4

1 回答 1

3

C:\inetpub\wwwroot-->不是Xampp 的默认目录。那是为 IIS

C:\xampp\htdocs\--> 默认目录。


xyz.php在内部创建C:\xampp\htdocs\,然后访问http://localhost/xyz.php.

于 2012-11-10T17:18:36.683 回答