我需要以某种方式允许我的服务器从自身下载文件。我必须使用wget
from example.com
on file example.com/script.json
,但是当我尝试这样做时,我收到 404 错误
Resolving https://example.com (example.com )... 1.2.3.4
Connecting to example.com (example.com)|1.2.3.4|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2019-12-04 11:10:50 ERROR 404: Not Found.
文件在目录中/home/site.com/apps/frontend/public
我是否以某种方式为此域设置 localhost?我也有这种感觉,但不知道怎么做。
答案1
解决了ServerAlias localhost
,将其添加到配置后,我可以使用 wgethttps://localhost/file.json
并且它有效。