apache利用.htaccess实现http重定向到https
发表评论
在.htaccess中添加如下代码 RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
阅读全文在.htaccess中添加如下代码 RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
阅读全文一、下载并安装 支持SSL的 Apache 1.安装配有SSL模块的apache, 下载地址:http://httpd.apache.org/download.cgi 2.配置:打开Apache的配置文件httpd.conf LoadModule ssl_module modules/mod_ssl.so Include conf/extra/httpd-ssl.conf 去掉两行前面的#,自定义的配置文件.conf还可以通过include包含进来。 修改httpd-ssl.conf文件里的两个字段: SSLCertificateFile “D:/Apache2.2/conf/se […]
阅读全文