gpt4 book ai didi

apache - SSL 通配符 Apache

转载 作者:太空宇宙 更新时间:2023-11-03 14:40:27 26 4
gpt4 key购买 nike

我有一个 SAAS,我需要在其中动态创建多个子域(注意:有很多子域,我不知道哪些会自动生成)。所以我不能为每个人重复这个:

<VirtualHost *:80>
ServerName a1.app.example.com
Redirect / https://a1.app.example.com
</VirtualHost>

有没有办法将 http 中的每个子域重定向到 https?。类似于“重定向/https://*.app.example.com”

<VirtualHost *:80>
ServerName app.example.com
Redirect / https://*.app.example.com
</VirtualHost>

<VirtualHost *:80>
ServerName app.example.com
ServerAlias *.app.example.com
DirectoryIndex index.php
DocumentRoot /var/www/xxxxxxx

SSLEngine on
SSLCertificateFile /etc/ssl/xxxxx.crt
SSLCertificateKeyFile /etc/ssl/xxxx.key
SSLCertificateChainFile /etc/ssl/xxxx.crt
</VirtualHost>

最佳答案

将其添加到您的主虚拟主机:

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,QSA,R=301]

并确保 mod_rewrite 处于事件状态。您可以使用 a2enmod rewrite 命令激活它。

关于apache - SSL 通配符 Apache,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43645698/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com