SSL跪求100!!!!!!!!急急急急急急急急急急急急急

SSL跪求100!!!!!!!!急急急急急急急急急急急急急

weblogic上发布一个web工程,假设一共有10个html页面,其中5个要做成https的安全连接,其他的不需要做。假设把需要做https安全连接的方在目录1,其他的方在目录2,那么,能否在weblogic上设置只对目录1下的html作安全连接,只要访问这5个
页面就会是https,而其他目录2下的仍然是http呢??????????????
apache的配置文件httpd.conf里面
<Directory /var/www/html/dir1>
    AllowOverride None
    Order allow,deny
    Allow from all
    RewriteEngine on
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*) https://%{SERVER_NAME}/dir1/$1 [R]
</Directory>


<Directory /var/www/html/dir2>
    AllowOverride None
    Order allow,deny
    Allow from all
    RewriteEngine on
    RewriteCond %{HTTPS} on
    RewriteRule ^(.*) http://%{SERVER_NAME}/dir2/$1 [R]
</Directory>


小弟也有同样的困惑,怎么样让部分页面能够通过http访问,而https不能访问;而被https访问的又不能被Http访问,一定要分开目录保存吗
试过了,还是都可以,不知道是哪设置错了