请让我知道进行此查询的方法数量。你能回答我的问题真是太好了。
问问题
3236 次
4 回答
4
如果您想要https,则需要购买证书。这是一个有用的链接:https ://support.google.com/webmasters/answer/6073543?hl=en
于 2015-04-23T06:03:44.883 回答
2
- 使用专用 IP 地址托管网站
- 从“证书颁发机构”(CA)购买 SSL 证书
- 激活证书
- 安装证书
- 更新您的网站以使用 HTTPS
来源http://www.howto-expert.com/how-to-get-https-setting-up-ssl-on-your-website/
于 2015-04-23T06:39:38.350 回答
0
我不确定您的问题是什么,但据我了解,这是我的意见。请多解释一下你的问题。您可以尝试 web.config - 它会强制所有资源使用 HTTPS,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Redirect to https" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
于 2015-04-23T06:03:16.810 回答
0
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
于 2019-10-21T11:09:19.463 回答