Port-Forwarding

127.0.0.1:8080 有效,但 localhost:8080 無效

  • October 26, 2012

這可能非常容易,所以我提前道歉,但我的優勢在於編碼。

為什麼我無法在 localhost:8080 訪問我的 localhost?

127.0.0.1:8080 - 有效

127.0.0.1:80 - 無效

127.0.0.1 - 無效

localhost - 工作

localhost:80 - 轉發到 localhost 並工作

localhost:8080 - 不起作用

我正在嘗試調整我的 hosts/etc 文件以包含

localhost  sandbox.dev  

反過來,我想在 sandbox.dev:8080/test-file.php 訪問我的應用程序。到目前為止,我還沒有成功,所以任何幫助將不勝感激。謝謝。

您的主機文件需要每行的第一個條目是 IP 地址,例如

127.0.0.1 localhost sandbox.dev

引用自:https://serverfault.com/questions/442532