Bug 46809

Summary: mod_rewrite+mod_ssl+SSLCientVerify = no POST variables
Product: Apache httpd-2 Reporter: Karl Grindley <kgrindley>
Component: mod_rewriteAssignee: Apache HTTPD Bugs Mailing List <bugs>
Status: RESOLVED DUPLICATE    
Severity: normal    
Priority: P1    
Version: 2.2.3   
Target Milestone: ---   
Hardware: PC   
OS: Linux   

Description Karl Grindley 2009-03-05 19:38:42 UTC
If SSLClientVerify for a <directory> is configured, such as:
<Directory "/var/www/html/site">
  SSLVerifyClient require
  SSLVerifyDepth  10
</Directory>

And mod rewrite is configured for this site: (via .htaccess in before mentioned directory)

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

Submitting a POST with variables defined do NOT show up on the script/php side.  Disabling mod_rewrite or SSLVerifyClient for the path will cause POST variables to be defined.
Comment 1 Joe Orton 2009-03-06 02:41:24 UTC

*** This bug has been marked as a duplicate of bug 43738 ***