HTTP到HTTPS重定向问题POST方法

时间:2018-12-17 22:30:40

标签: apache .htaccess redirect url-redirection http-redirect

我正在尝试使用apache将HTTP请求重定向到HTTPS请求。对于WEB和IOS REST服务中的 POST 方法,它工作正常,但是 Android 调用相同的服务无效。以下是我的重定向代码。请为我提供一些解决方案。谢谢。

    RewriteEngine On

    //IP redirection
    RewriteCond %{HTTP_HOST} !^www\.(.+)$ [NC]
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    //domain redirection
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=302]

0 个答案:

没有答案