来自外部webbrowser的网站404错误

时间:2015-02-09 16:43:32

标签: xampp http-status-code-404 external

我无法通过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”时,服务器无法启动。 info:我正在使用lubuntu(ubuntu)

修改 在结论前至少它与“听”无关

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

1 个答案:

答案 0 :(得分:0)

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

所以,不要“听80”/“听443”,请尝试“listen <ip address>:80”/“listen <ip address>:443”。

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