4

我正在尝试将我的所有 foo.mydomain.com 请求重定向到https://foo.mydomain.com

我的 VirtualHost 包含以下内容:

<VirtualHost *:443>
    ServerName foo.mydomain.com

    # Indexes + root dir
    DirectoryIndex index.html
    DocumentRoot /home/web/foo.mydomain.com/htdocs

    SSLEngine on

    SSLCertificateFile /etc/apache2/ssl/server.crt
    SSLCertificateKeyFile /etc/apache2/ssl/server.key

    SSLVerifyClient none

    <IfModule mime.c>
            AddType application/x-x509-ca-cert      .crt
            AddType application/x-pkcs7-crl         .crl
    </IfModule>

    # Logfiles
    ErrorLog /home/web/foo.mydomain.com/logs/error.log
    CustomLog /home/web/foo.mydomain.com/logs/access.log combined
</VirtualHost>

所以现在我试图在这个 .htaccess 文件中使用 mod_rewrite 将所有 http-request 重定向到 https:

Options FollowSymLinks
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://foo.mydomain.com

有谁知道我做错了什么?先感谢您!

4

1 回答 1

0

在非 https 站点的虚拟主机配置中尝试以下操作。

即我的设置是:

<VirtualHost *:80>
RewriteCond %{SEVER_PORT} !^443$
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
.....
</VirtualHost>

这应该将所有传入的 http 请求重定向到 https。然后在端口 443 的配置中,你可以做任何你需要的事情......

注意:也应该在 htaccess 中工作。

希望有帮助。不确定您所说的“默认页面”是什么意思,但标题和代表太低而无法发表评论......

让我知道...

干杯

罗宾

于 2012-10-14T07:25:15.187 回答