使用RewriteRule会丢失POST值

时间:2016-10-17 10:42:34

标签: apache .htaccess mod-rewrite

GET值正常 这是我的.htaccess规则

RewriteCond %{HTTP:X-Forwarded-Proto} !https 
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]

应用程序是使用php codeigniter构建的 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

使用R = 307

修复了问题
RewriteCond %{HTTP:X-Forwarded-Proto} !https 
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [R=307,L]