当前位置:Gxlcms > PHP教程 > ubuntu下bluefish调试PHP页面问题

ubuntu下bluefish调试PHP页面问题

时间:2021-07-01 10:21:17 帮助过:28人阅读

每次点击调试,在浏览器中出现:file:///var/www/testWeb/index.php
但是在localhost/testWeb/index.php中又显示正常!
是什么原因呢?

回复内容:

每次点击调试,在浏览器中出现:file:///var/www/testWeb/index.php
但是在localhost/testWeb/index.php中又显示正常!
是什么原因呢?

file:///var/www/testWeb/index.php 这是一个文件,浏览器是不做解析的。

而http://localhost/testWeb/index.php 这是一个链接地址,会经过你的apache+php的处理,生成html,发送到浏览器。由浏览器解析

人气教程排行