Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个 apache 模块,它在被调用时会执行许多操作,其中之一是以字符串的形式修改 URL。我随后想重定向到这个 URL。不幸的是,没有太多的文档可以帮助我完成这个,有做过类似的人可以请教吗?
提前致谢
您可以将 apr_table_add 函数与 headers_out 一起使用,该函数包含响应标头。
apr_table_add(r->headers_out, "Location", your_url); return HTTP_MOVED_PERMANENTLY;