我正在使用apache服务器版本2.4
我已通过在configure期间指定--prefix将apache安装到自定义位置。
我在mac os x mavericks上。
我正在使用用c编写的apache模块。我正在关注官方网站http://httpd.apache.org/docs/2.4/developer/modguide.html
上的教程我在mod_example.c下安装了模块:代码在下面给出
/* Include the required headers from httpd */
#include "httpd.h"
#include "http_core.h"
#include "http_protocol.h"
#include "http_request.h"
/* Define prototypes of our functions in this module */
static void register_hooks(apr_pool_t *pool);
static int example_handler(request_rec *r);
/* Define our module as an entity and assign a function for registering hooks */
module AP_MODULE_DECLARE_DATA example_module =
{
STANDARD20_MODULE_STUFF,
NULL, // Per-directory configuration handler
NULL, // Merge handler for per-directory configurations
NULL, // Per-server configuration handler
NULL, // Merge handler for per-server configurations
NULL, // Any directives we may have for httpd
register_hooks // Our hook registering function
};
/* register_hooks: Adds a hook to the httpd process */
static void register_hooks(apr_pool_t *pool)
{
/* Hook the request handler */
ap_hook_handler(example_handler, NULL, NULL, APR_HOOK_LAST);
}
/* The handler function for our module.
* This is where all the fun happens!
*/
static int example_handler(request_rec *r)
{
/* First off, we need to check if this is a call for the "example" handler.
* If it is, we accept it and do our things, it not, we simply return DECLINED,
* and Apache will try somewhere else.
*/
if (!r->handler || strcmp(r->handler, "example-handler")) return (DECLINED);
// The first thing we will do is write a simple "Hello, world!" back to the client.
ap_rputs("Hello, world!<br/>", r);
return OK;
}
我添加了我的Set Handler,如下所示
<IfModule example_module>
<Location /*>
SetHandler example_module
</Location>
</IfModule>
当我尝试访问localhost /时,我得到了#34;它可以工作!&#34;屏幕。
但是当我尝试访问localhost中的某些路径时,如localhost / asd,我收到以下错误
禁止
您无权访问此服务器上的/ asd。服务器无法 阅读htaccess文件,拒绝访问是安全的
你能帮我解决一下吗?