PHPinfo 返回空白页
我对编程完全陌生..正在安装wampserver..我使用的是Windows,并且我在文件夹 C:\wamp\www 中有一个名为 test.php 的文件。在 test.php 文件中,我有这段代码
<?php phpinfo(); ?>
然后我打开了 Firefox 浏览器,然后输入了下面的语句,但它返回了一个空白页面。下面的网址对吗? http://localhost/www/test.php
我做的对吗?尝试使用搜索功能但无法使用。谢谢!
I am totally new to programming.. Was installing the wampserver.. I'm using windows, and I have a file called test.php inside the folder C:\wamp\www . Inside the test.php file, I have this code
<?php phpinfo(); ?>
Then I opened the firefox browser and then entered the statement below but it returns a blank page. Is the url below right?
http://localhost/www/test.php
Am I doing the right thing? Tried using the search function but couldn't get it to work. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 URL 应该是 http://localhost/test.php
“www”文件夹默认是您的 DocumentRoot 文件夹。 URL http://localhost/ 将指向该文件夹。之后的一切都像正常的文档路径一样工作。
Your URL should be http://localhost/test.php
The "www" folder is your DocumentRoot folder by default. The URL http://localhost/ will point to that folder. Everything after that works like a normal document path.
空白页意味着在输出开始之前发生错误,并且您已禁用错误显示。检查您的网络服务器错误日志。
A blank page means that an error occurred before output began, and you have error display disabled. Check your web server error log.