apache http redirects not keeping POST parameters
Posted
by user12145
on Server Fault
See other posts from Server Fault
or by user12145
Published on 2010-06-02T18:33:51Z
Indexed on
2010/06/02
18:44 UTC
Read the original article
Hit count: 311
post parameters are not getting to the server after it goes through an internal redirect on apache. So www.mydomain.com would keep my post parameters, but mydomain.com doesn't. how do I fix this?
<VirtualHost *:80> ServerName mydomain.com Redirect permanent / http://www.mydomain.com/ </VirtualHost>
© Server Fault or respective owner