本月优惠

安装SSL证书后通过代码实现http自动强制跳转到https

Linux主机

如果使用的是Linux主机,需要在你的网站根目录下的.htaccess文件(没有需要创建一个)中添加下面代码然后保存即可:

RewriteEngine On

RewriteCond %{SERVER_PORT} 80

RewriteRule ^(.*)$ https://www.ssldun.com/$1 [R,L]

(你网站的域名替换上面的ssldun.com)

当然,如果想指定某一个文件使用https,则添加一下代码(此时.htaccess文件需要放在你指定的文件夹中):

RewriteEngine On

RewriteCond %{SERVER_PORT} 80

RewriteCond %{REQUEST_URI} somefolder

RewriteRule ^(.*)$ https://www.ssldun.com/somefolder/$1 [R,L]
(你网站的域名替换上面的ssldun.com)


Windows主机

Windows主机需要在网站根目录下的web.config文件中(没有需要创建,需要支持.NET),然后在该文件里面添加下面代码:

<rule name="HTTP to HTTPS redirect" stopProcessing="true">

<match url="(.*)" />

<conditions>

<add input="{HTTPS}" pattern="off" ignoreCase="true" />

</conditions>

<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />

</rule>

通过以上方式便可以实现http自动跳转到https(域名下所有页面)