HTTP GET 请求无法获取

发布于 2024-12-11 12:25:48 字数 243 浏览 0 评论 0原文

当我尝试发送像

GET / 这样的 HTTP 请求时 我无法访问index.html 或index.php。 主机带来页面/cgi-sys/defaultwebpage.cgi

当我尝试 GET /index.html 这次我收到 404 未找到错误。它说找不到(none)/index.html

可能是什么原因?

When I try to send a HTTP request like

GET /
I can't reach to index.html or index.php.
The host brings the page /cgi-sys/defaultwebpage.cgi.

When I try GET /index.html
This time i get a 404 not found error. It says (none)/index.html not found.

What could be the reason?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

極樂鬼 2024-12-18 12:25:48

网络根目录中没有 index.html。服务器已配置为将 / 请求重定向到 /cgi-sys/defaultwebpage.cgi,您应该遵守这一点。

There is no index.html in the web root. The server has been configured to redirect requests for / to /cgi-sys/defaultwebpage.cgi instead, and you should honor that.

凌乱心跳 2024-12-18 12:25:48

看起来 httpd.conf 文件中的 DocumentRoot 指向另一个目录,而不是 index.html 所在的位置。

Looks like that DocumentRoot in the httpd.conf file is pointing to a different directory instead of where your index.html is.

四叶草在未来唯美盛开 2024-12-18 12:25:48

如果您使用的是 apache,请检查您是否在 < 中设置了 DirectoryIndex 值代码>httpd.conf正确。例如:

DirectoryIndex index.html

If you are using apache, check if you set your DirectoryIndex value in httpd.conf correct. For example:

DirectoryIndex index.html
王权女流氓 2024-12-18 12:25:48

我以为我遇到了同样的问题,直到通过匿名访问服务查看我的页面(例如 this)。实际上问题出在我的 DNS 缓存上。

I thought I had the same problem until looked at my page via anonymous access service (like this). Actually the problem was with my DNS cache.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文