From: Rich Bowen Date: Sun, 17 May 2026 22:33:54 +0000 (+0000) Subject: rewrite docs: Note that mod_rewrite cannot inspect request body (POST data) X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=b558d4c1c22de4102af6fd11c767ecaac1b362c2;p=thirdparty%2Fapache%2Fhttpd.git rewrite docs: Note that mod_rewrite cannot inspect request body (POST data) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1934326 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/intro.xml b/docs/manual/rewrite/intro.xml index afd053993c..cb25d1c385 100644 --- a/docs/manual/rewrite/intro.xml +++ b/docs/manual/rewrite/intro.xml @@ -251,6 +251,12 @@ those, use a %{HTTP_HOST}, %{SERVER_PORT}, or %{QUERY_STRING} variables respectively.

+mod_rewrite operates entirely on the URL-path +and HTTP headers. It cannot inspect the request body (e.g., POST +data). If you need to make routing decisions based on request body +content, handle that in your application logic or use a module such +as mod_request paired with a custom filter. +

Syntax of the RewriteRule directive