Apache 如何知道每个模块中处理程序的名称?

发布于 2024-10-19 00:14:21 字数 415 浏览 3 评论 0原文

我正在阅读以下内容: http://modules.apache.org/doc/API.html

请解释 Apache 如何知道要调用的处理程序的名称。 CGI 模块具有以下处理程序:

int translate_scriptalias (request_rec *);
int type_scriptalias (request_rec *);
int cgi_handler (request_rec *);

另一个模块可能有一些其他名称。 Apache 如何知道哪个是(比方说)响应阶段的处理程序?

PS:有人可以分配正确的标签吗?我不知道该附加哪些。

I was reading the following: http://modules.apache.org/doc/API.html

Please explain how Apache knows the name of the handler to call. The CGI Module has the following handlers:

int translate_scriptalias (request_rec *);
int type_scriptalias (request_rec *);
int cgi_handler (request_rec *);

Another module might have some other names. How does Apache know which is the handler for the (let's say) response phase ?

PS: Can someone assign the right tags ? I couldn't know which ones to attach.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九厘米的零° 2024-10-26 00:14:21

它们(最终)是第一个代码片段底部的 module 结构的成员。

They're (eventually) members of the module struct at the bottom of the first snippet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文