htaccess将http重定向到https并保留路径

时间:2016-04-21 12:13:07

标签: apache .htaccess redirect mod-rewrite

我正在尝试将http:// www.mysite.de/en/test/something.php?id=12重定向到

https:// www.mysite.de/en/test/something.php?id=12但它始终是

https:\ www.mysite.de/index.php ....

我已经尝试了很多片段并阅读了一些论坛,但似乎没有任何工作像我想要的那样:/ 应该这样做的最后一个片段是:

RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https:\\%{HTTP_HOST}%{REQUEST_URI} [R=301,QSA,L]

但仍然是/index.php,但这次是?id = 12 ^^

我希望你们帮我一把:)

感谢您未来的帮助

0 个答案:

没有答案