RewriteRule 中的https

RewriteRule 中的https

RewriteEngine on
RewriteRule   ^/$  /horde/  [R]

httpd.conf里设置上上面的代码,对http有效,https怎么就没有效了呢?
UP
RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [R,L]
这样就可以了!