来自外部网络浏览器的网站 404 错误

website 404 error from external webbrowser

我无法通过 ip 地址从外部访问我的网站。 这有效:

localhost/my_website  // shows my web_site
https://IP-adress/    // I see xampp startpage

这行不通:

 https://IP-adress/my_website //-> I get 404 error

当我添加到 httpd.config 文件时 "listen 443" 或 "listen 80" 服务器没有启动。 信息:我正在使用 lubuntu(ubuntu)

编辑: 至少在结论前它与 "listen "

无关

关键是文件夹/my_website显示my_website无法从外部计算机显示,但是xampp例如从外部显示

您可能需要指定主机地址和端口。我使用 xampp 已经有几年了,但我猜如果没有明确提供地址,它会默认为 localhost。

所以,而不是 "listen 80"/"listen 443",试试“listen <ip address>:80”/“listen <ip address>:443”。

例如:"listen 0.0.0.0:80" 将允许您使用 localhost 和 127.0.0.1 从本地计算机访问您的服务器。