-4

在浏览器中将 ' localhost ' 写为 url 时,此位置的index.html会运行:**file:///C:/xampp/htdocs/PrepLift/html/index.php**

通常,在浏览器中将 localhost 写为 url,保存在 htdocs 中的 index.html 文件会运行。但在我的情况下,index.html 保存在其他位置运行。

如果我想运行保存在 htdocs 中的 index.html 文件,我应该写什么作为 url?

假设我想使用 localhost 在浏览器上运行这个文件:///C:/xampp/htdocs/wp_blog/accesspress-lite/index.php。(此文件位于保存在 htdocs 中的其他一些分支文件夹中)。我应该写什么网址?

由于我要运行的目标文件位于本地主机运行的 index.html 位置之前的文件夹中。

4

1 回答 1

0

运行服务器并在http协议上打开...文件协议不会执行php代码

您正在使用 xampp。所以运行它并通过http://localhost/wp_blog/访问它 (如果您的端口不是 80 而不是 http://localhost:PORT_NO/wp_blog/ 例如 PORT_NO = 8000 而不是http://localhost:8000/wp_blog/

您也可以像这样运行默认的 php 服务器(如果 php 全局可用):转到公共文件夹 -> 打开 cmd -> 键入“php -S localhost:8000”

于 2016-03-23T11:41:01.527 回答