2

我需要从http://test-glad/redirectTO重定向https://test-glad/start.do

主要问题是我需要在请求中维护 POST 参数。

我无法使用标准 http 重定向来执行此操作,因为 POST 参数未按照 RFC 中的指定重新发送

我也尝试过使用代理通行证,但它不起作用。

我现在正在尝试使用 Apache URL 重写来做到这一点,但很挣扎。你知道这是否可能。如果是这样,我们将不胜感激对语法的帮助。

我正在使用 Apache 2.2

非常感谢

汤姆

4

1 回答 1

3

您是在本地主机上还是在实时服务器上尝试?将http重定向到https(整个网站的SSL)在.httaccess中试试这个

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

或者

RewriteCond %{SERVER_PORT}s ^(443(s)|[0-9]+s)$
RewriteRule ^(.*)$ - [env=askapache:%2]

# redirect urls with index.html to folder
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index.html HTTP/
RewriteRule ^(([^/]+/)*)index.html$ http%{ENV:askapache}://%{HTTP_HOST}/$1 [R=301,L]

# change // to /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)//(.*) HTTP/ [NC]
RewriteRule ^.*$ http%{ENV:askapache}://%{HTTP_HOST}/%1/%2 [R=301,L]
于 2013-07-08T08:27:01.623 回答