作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我重新开发了我公司的网站,但在重定向/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
<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?
olddomain.org
所以甚至从来没有看到重定向指令。
关于.htaccess - 如何将https重定向到新域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70298313/
我是一名优秀的程序员,十分优秀!