Apache中设置强制将http转换为https。

Apache中设置强制将http转换为https的方法:

1 启用rewrite模块:

LoadModule rewrite_module     opt/CollabNet_Subversion/modules/mod_rewrite.so

2 做跳转配置:

<VirtualHost *:80>

 RewriteEngine On

 RewriteCond %{SERVER_PORT} !^443$

 RewriteRule ^(.*)?$ https://%{SERVER_NAME}$1 [L,R]

</VirtualHost>

以上配置在bugzilla测试机中(10.122.2.35)测试通过。


你可能感兴趣的:(Apache中设置强制将http转换为https。)