如何告诉 Hunchentoot 在哪里可以找到要提供的静态网页?
Hunchentoot 文档指出:
“ACCEPTOR 的方法尝试提供相对于其 ACCEPTOR-DOCUMENT-ROOT 的静态文件。”
acceptor-document-root 接受器 => (或路径名 null)
(setf(接受器-文档-根接受器)新值)
我在将此文档翻译成实际的 Lisp 代码时遇到了麻烦。
有人可以给我一个例子,告诉我如何告诉 Hunchentoot 在哪里寻找静态网页来提供服务吗?
The Hunchentoot documentation states:
"The method for ACCEPTOR tries to serve a static file relative to it's ACCEPTOR-DOCUMENT-ROOT."
acceptor-document-root acceptor => (or pathname null)
(setf (acceptor-document-root acceptor ) new-value)
I am having trouble in translating this documentation into actual Lisp code.
Can someone please give me an example of how to tell Hunchentoot where to look for static web pages to serve?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的代码翻译如下:
The simplest translation to code will be this:
下面是一个提供单个静态网页的代码片段:
要使整个文件夹可用,请尝试
create-folder-dispatcher-and-handler
。Here is a snippet which serves a single static webpage:
To make a whole folder available try
create-folder-dispatcher-and-handler
.