Apache-Httpd
從“自身”從網路伺服器下載文件時出現 404 錯誤
我需要以某種方式允許我的伺服器從自身下載文件。我必須使用
wget
fromexample.com
on fileexample.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?我覺得我喜歡,但不知道怎麼做。
解決了
ServerAlias localhost
,將其添加到配置後,我能夠使用 wgethttps://localhost/file.json
並且它有效。