Why not just use a different document root for the secure and insecure sites? Put symbolic links from the HTTPS root into the regular root for directories that you want to make available insecurely as well.

Jamie

At 02:01 PM 9/14/00 , Carlos Ramirez wrote:
You can use mod_rewrite.

Example:

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/secureSection.*
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*) https://www.mydomain.com/$1 [R]

-Carlos

Reply via email to