gpt4 book ai didi

.htaccess - 如何将https重定向到新域?

转载 作者:行者123 更新时间:2023-12-04 22:36:33 25 4
gpt4 key购买 nike

我重新开发了我公司的网站,但在重定向/SSL 方面遇到了一些问题
输入或点击 http://olddomain.org重定向到 https://newdomain.com .
但是,键入或单击链接 https://olddomain.org不重定向到 https://newdomain.com我得到这个错误:

Firefox does not trust this site because it uses a certificate that is not valid for olddomain.org. The certificate is only valid for the following names: *.newdomain.com, newdomain.com


我可以在我的 .htaccess 文件中添加一些重写条件来解决这个问题吗?还是我为新域设置 SSL 证书的方式有问题?
这是我到目前为止所尝试的:
 <IfModule mod_rewrite.c>
RewriteEngine On
Redirect 301 / http://newdomain.com/
</IfModule>
<br />
  RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?http://olddomain\.org$
RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,QSA,L]

最佳答案

Or is this an issue with the way that I set up the SSL certificate for the new domain?


是的,您需要一个涵盖旧域的有效 SSL 证书(如浏览器错误中所示......“它使用的证书对 olddomain.org 无效”)。
如果没有有效的证书,浏览器将无法(安全)连接到 olddomain.org所以甚至从来没有看到重定向指令。

关于.htaccess - 如何将https重定向到新域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70298313/

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