我可以使用HTTP访问系统目录吗?

时间:2014-11-15 04:10:20

标签: rest http get request

我有一个像这样运行的预制数据库

我在同一系统上有请求和预装数据库服务器。

starting canned on port 3000 for ./
request: get /home/abc/def/canned/example/comment/any.get.json not found
request: get /home/abc/Desktop/hello not found
request: get /home/abc/Desktop/hello.json not found

我的GET请求看起来像这样(在同一系统上)

GET http://10.0.x.xx:3000/home/abc/Desktop/hello.json

我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

您不能使用绝对路径,必须使用相对于HTTP服务器的文档根目录的路径。例如,如果您的服务器使用/home/abc/作为文档根目录,则可以使用网址http://10.0.x.xx:3000/Desktop/hello.json