https://subdomain.example.com 重定向到 https://example.com:port

发布于 2024-12-09 19:53:35 字数 320 浏览 0 评论 0原文

最近为我们的主域和 www.domain 购买了 SSL 证书。不是通配符证书。

我有重写规则,重定向所有 http://subdomain.example.com -> https://example.com:port

但是,当我直接输入 https://subdomain.example.com 时,它会带来不受信任的连接消息。有什么办法可以让它不这样做吗?

Recently purchased a SSL certificate for our main domain and www.domain. Not a wildcard certificate.

I have rewrite rule that redirects all http://subdomain.example.com -> https://example.com:port

However, when I directly type https:/subdomain.example.com it brings up the Untrusted Connection message. Is there any way to make it so it doesn't do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖个坑埋了你 2024-12-16 19:53:35

试试这个:

RewriteEngine On

# redirect all www (http or https) to https://domain.com  
RewriteCond %{HTTP_HOST} ^www.domain.com [nc]
RewriteRule (.*) https://domain.com:80/$1 [R=301,L]

# redirect http://domain.com to https://domain.com
RewriteCond %{HTTP_HOST} ^domain.com [nc]
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://domain.com:80/$1 [R=301,L]

# redirect all sub domain (http or https) to https://domain.com
RewriteCond %{HTTP_HOST} ^([a-z0-9\-]+)\.domain\.com$  [NC]
RewriteCond %1 !^www$ [NC]
RewriteRule (.*) https://domain.com:80/$1 [R=301,L]

Try this:

RewriteEngine On

# redirect all www (http or https) to https://domain.com  
RewriteCond %{HTTP_HOST} ^www.domain.com [nc]
RewriteRule (.*) https://domain.com:80/$1 [R=301,L]

# redirect http://domain.com to https://domain.com
RewriteCond %{HTTP_HOST} ^domain.com [nc]
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://domain.com:80/$1 [R=301,L]

# redirect all sub domain (http or https) to https://domain.com
RewriteCond %{HTTP_HOST} ^([a-z0-9\-]+)\.domain\.com$  [NC]
RewriteCond %1 !^www$ [NC]
RewriteRule (.*) https://domain.com:80/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文