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.
答案 0 :(得分:4)
如果你想要https,你需要购买一个证书。 这是一个有用的链接:here
答案 1 :(得分:2)
来源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>