apache2使用完整网址将http重定向到https

时间:2017-03-26 10:15:49

标签: apache .htaccess redirect

我有这条规则:

RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://www.dnilabs.at/$1 [R=301,L]

所以当我浏览网址http://www.dnilabs.at/loesungen/重定向到https index.php时,应该是https / loesungen /

我在这里想念什么?不应该重定向到/ loesungen /而不是/index.php

我也尝试了同样的结果

^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI}

1 个答案:

答案 0 :(得分:0)

确定它有效,我的问题是我将规则放在我的.htaccess文件的末尾,我将它直接放在RewriteEngine On下,现在它可以正常工作