Apache 如何知道每个模块中处理程序的名称?
我正在阅读以下内容: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们(最终)是第一个代码片段底部的
module
结构的成员。They're (eventually) members of the
module
struct at the bottom of the first snippet.