when I try to open an HTML file through `http://localhost/xampp/htdocs/index.html` it says unable to connect to localhost(当我尝试通过 `http://localhost/xampp/htdocs/index.html` 打开 HTML 文件时,它说无法连接到 localhost)
问题描述
我已经安装了 XAMPP,有一个 htdocs
文件夹,里面有 index.html
文件,当我尝试通过 http://localhost/xampp/htdocs/index.html
在浏览器中打开它时,它说无法连接到本地主机.
I have installed XAMPP , there is a htdocs
folder and inside it index.html
file ,
when I try to open it in my browser through http://localhost/xampp/htdocs/index.html
it says
unable to connect to localhost .
怎么了?
推荐答案
代替
http://localhost/xampp/htdocs/index.html
试一试
http://localhost/index.html
或者如果 index.html 保存在 htdocs 的文件夹中,那么
or if index.html is saved in a folder in htdocs then
http://localhost/<folder-name>/index.html
这篇关于当我尝试通过 `http://localhost/xampp/htdocs/index.html` 打开 HTML 文件时,它说无法连接到 localhost的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:当我尝试通过 `http://localhost/xampp/htdocs/index.html` 打开 HTML 文件时,它说无法连接到 localhost


基础教程推荐
- 如何添加到目前为止的天数? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01