在 Windows 上使用 localhost:4040
Use localhost:4040 on Windows
我想知道如何在不使用任何外部软件的情况下访问我的本地主机文件夹并转到 https://localhost:4040/index.html 等文件。我只想知道我必须复制到的文件夹 index.html 以便我可以访问此 link.
我正在使用 ngrok,但它 returns 出现 404 错误。我尝试将 index.html 放在与 ngrok.exe
相同的目录中
ngrok
允许您将本地计算机上 运行ning 的网络服务器公开到互联网。
1。本地主机
如果您只想访问您的 localhost
文件夹,则不需要 ngrok
。
无论哪种方式,第一步都是 运行 网络服务器 — 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.
访问该文件
我想知道如何在不使用任何外部软件的情况下访问我的本地主机文件夹并转到 https://localhost:4040/index.html 等文件。我只想知道我必须复制到的文件夹 index.html 以便我可以访问此 link.
我正在使用 ngrok,但它 returns 出现 404 错误。我尝试将 index.html 放在与 ngrok.exe
相同的目录中ngrok
允许您将本地计算机上 运行ning 的网络服务器公开到互联网。
1。本地主机
如果您只想访问您的 localhost
文件夹,则不需要 ngrok
。
无论哪种方式,第一步都是 运行 网络服务器 — 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.