我在计算机上安装了XAMPP for Windows
。我启动它并检查状态,它说PHP
已激活。然后我转到以下目录:C:\inetpub\wwwroot
并创建了一个文件名phpinfo.php
,其中包含以下内容:
<?php phpinfo(); ?>
然后我打开了我的网络浏览器(我尝试了Internet Explorer
和Google 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
是否在正确的目录中,并且在我可能做错的其他事情上处于失败状态。
答案 0 :(得分:2)
C:\inetpub\wwwroot
- &gt; 不 Xampp的默认目录。那是IIS
C:\xampp\htdocs\
- &gt;默认目录。
在xyz.php
内创建C:\xampp\htdocs\
,然后访问http://localhost/xyz.php
。