当我尝试通过 `http://localhost/xampp/htdocs/index.html` 打开 HTML 文件时,它说无法连接到 localhost

2022-01-14 00:00:00 xampp html

我已经安装了 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

相关文章