I have a resource, let's say image.jpg
. This image(along with other resources) is compressed in a .zip file (archive.zip) under the path /favimage/image.jpg. The archive is uploaded at http://example.com/down/archive.zip.
Now I want to address this single resource (image.jpg) using a URI over the internet. Is there any scheme standard to do that?
Currently I use a fiat syntax. url-encoding is skipped for brevity: http://example.com/?0=http://example.com/down/archive.zip&1=/favimage/image.jpg
Here param 0 tells me the resource http://example.com/down/archive.zip
encapsulates resource number 1 which is /favimage/image.jpg
.