How to enable https protocol in a normal website?

时间:2015-04-23 05:47:26

标签: html http ssl https dtls

Kindly let me know the number of methods to proceed with this query. It will be really so nice of you for answering my question.

4 个答案:

答案 0 :(得分:4)

如果你想要https,你需要购买一个证书。 这是一个有用的链接:here

答案 1 :(得分:2)

  1. 使用专用IP地址托管网站
  2. 从"证书颁发机构“(CA)
  3. 购买SSL证书
  4. 激活证书
  5. 安装证书
  6. 更新您的网站以使用HTTPS
  7. 来源http://www.howto-expert.com/how-to-get-https-setting-up-ssl-on-your-website/

答案 2 :(得分:0)

我不确定你的问题是什么,但据我所知,这是我的意见。请再解释一下你的问题。 您可以尝试使用web.config - 它将强制HTTPS为所有资源,如下所示:

project settings > target > Build Phases > Copy Bundle Resources

答案 3 :(得分:0)

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>