/ csp G-WAN中的默认目录

时间:2013-02-27 14:52:43

标签: performance url-rewriting g-wan

我正在寻找最好的方式(最快),以便我的domain.com直接指向我的/ csp目录。 我猜你在headps目录中出现的main.c文件中的哪些指令会建议吗?

1 个答案:

答案 0 :(得分:0)

如果您的目标是让http://domain.com/执行script而不是加载静态页面,那么请使用URI重写:

int main(int argc, char *argv[])
{
   const long state = (long)argv[0];
   if(state == HDL_AFTER_READ)
   {
      xbuf_t *read_xbuf = (xbuf_t*)get_env(argv, READ_XBUF);
      xbuf_replfrto(read_xbuf, read_xbuf->ptr, read_xbuf->ptr + 16, "/index.html", "/?index_1.c");

      // Note: you may have to look for the ending double-CRLF to check
      //       if there are other pipelined requests to rewrite
   }
   return 255; // execute next connection step
}

名称"/?index_1.c"旨在使用与"/index.html"相同的长度来避免重写期间的memmove()(具有相同的长度允许就地重写)。