在Windows上使用localhost:4040

时间:2017-10-17 16:33:42

标签: localhost ngrok

我想知道如何在不使用任何外部软件的情况下访问我的localhost文件夹并转到https://localhost:4040/index.html之类的文件。我只想知道我必须复制index.html的文件夹,以便我可以访问此链接。

我正在使用ngrok,但它返回404错误。我尝试将index.html放在与ngrok.exe相同的目录中

1 个答案:

答案 0 :(得分:2)

ngrok允许您将本地计算机上运行的Web服务器公开到Internet。

1。本地主机

如果您只想访问localhost文件夹,则不需要ngrok

无论哪种方式,第一步是运行一个Web服务器 - Python上的一行代码。

如果你有Python 3:

python -m http.server 8000

如果你有Python 2:

python -m SimpleHTTPServer

现在可以在http://localhost:8000/index.html访问该文件。

2。 ngrok

如果您想在其他设备上访问localhost,请运行ngrok:

ngrok http 8000

您应该看到如下行:

Forwarding    https://92832de0.ngrok.io -> localhost:8000

现在可以通过 https:// 92832de0 .ngrok.io / index.html 访问该文件。