将http转换为https

时间:2010-04-01 10:14:31

标签: php ssl web web-services

mysite

我想将我的网站从HTTP转移到HTTPS,

此外,我想在用户输入

时重定向我的网站

1.IF他们的类型 happy.in https://happylife.in

2.IF类似 http://happy.in https://happylife.in

3.IF他们的类型 www.happy.in https://happylife.in

我需要做什么,

我没有开始为SSL工作,

请指导我,

由于

1 个答案:

答案 0 :(得分:2)

1)安装SSL证书

2)将它放在根网站目录中的.htaccess文件中:

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.happylife.in/$1 [R,L]