PHPinfo 返回空白页

发布于 2024-10-05 06:31:37 字数 340 浏览 0 评论 0原文

我对编程完全陌生..正在安装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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小帐篷 2024-10-12 06:31:37

您的 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.

一枫情书 2024-10-12 06:31:37

空白页意味着在输出开始之前发生错误,并且您已禁用错误显示。检查您的网络服务器错误日志。

A blank page means that an error occurred before output began, and you have error display disabled. Check your web server error log.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文