0

我想写一条规则说,每当请求该资源时,如果内容类型是 X,则返回 file_x,如果是 Y,则返回 file_Y

任何人都可以在这里帮忙吗?

非常感谢,

-D-

4

1 回答 1

0

除了在您的其他问题中提到的内容之外,另一种选择是使用类型映射文件。例如,我使用以下文件类型映射来提供我的 foaf 配置文件。

URI: card

URI: card.ttl
Content-type: text/turtle; qs=1.0

URI: card.rdf
Content-type: application/rdf+xml; qs=0.8

URI: card.html
Content-type: text/html; qs=0.8

URI: card.trix
Content-type: application/trix; qs=0.8

URI: card.trig
Content-type: application/x-trig; qs=0.8

URI: card.n3
Content-type: text/rdf+n3; qs=0.8

URI: card.nt
Content-type: text/plain; qs=0.8

这是文件。 http://people.apache.org/~nandana/id/

于 2015-01-23T11:06:50.187 回答