OD,
I searched at http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html for an Apache code which would resend the $_POST array. It was a quick search but I couldn't find anything (307 is Temporary Redirect). As I don't believe that the Redirect used would alter the $_REQUEST ($_GET, $_POST & $_COOKIE} array, I didn't expect an array resent code.
Your mod_rewrite code is okay (not preferred - lowercase is not wrong but just not preferred) and the NC in the RewriteRule is ... well, absurd (what case is (.*)?). What your code does is merely force www. on both your domains. Why not merely use:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule .? http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
This, too, should not cause the $_REQUEST array to be withheld or altered.
Regards,
DK
Bookmarks