comparison src/http/ngx_http_core_module.c @ 205:4a9a2b1dd6fa

nginx-0.0.1-2003-12-04-17:53:00 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 04 Dec 2003 14:53:00 +0000
parents 267ea1d98683
children 9aa426375256
comparison
equal deleted inserted replaced
204:e0bcfb77d6c7 205:4a9a2b1dd6fa
512 512
513 return NGX_HTTP_MOVED_PERMANENTLY; 513 return NGX_HTTP_MOVED_PERMANENTLY;
514 } 514 }
515 515
516 if (clcf->handler) { 516 if (clcf->handler) {
517 /*
518 * if the location already has content handler then skip
519 * the translation phase
520 */
521
522 r->content_handler = clcf->handler; 517 r->content_handler = clcf->handler;
523 r->phase++;
524 } 518 }
525 519
526 return NGX_OK; 520 return NGX_OK;
527 } 521 }
528 522