我将HTTP重定向到HTTPS,现在HTTP POST代码不起作用

时间:2019-08-25 20:36:43

标签: http redirect post https

我在.htaccess文件中使用以下重写规则:

<IfModule mod_rewrite.c>
RewriteEngine On

# Rewrite HTTP to HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]

RewriteBase /

</IfModule>

我有一些旧代码,我有一段时间无法更新,无法对我的网站执行HTTP POST请求(例如)http://mywebsite.com/get_users.php。由于是通过硬编码从http请求而不是从https请求,因此POST请求返回:

302 Found

Found

The document has moved here

“此处”是指向https://mywebsite.com/get_users.php的链接

是否有一种方法可以解决此问题,而无需更新我的HTTP POST请求代码?

0 个答案:

没有答案