А я уже Вам писал про директиву rewrite.
Третий раз не буду писать.

Вот пример:
/etc/apache2/conf.d/ifolder_web.conf
писал(а):Alias /ifolder "/opt/novell/ifolder3/webaccess"
AddMonoApplications ifolder "/ifolder:/opt/novell/ifolder3/webaccess"
<Location /ifolder >
MonoSetServerAlias ifolder
Order allow,deny
Allow from all
AddHandler mono asax aspx ascx asmx ashx
DirectoryIndex Default.aspx index.html
</Location>
# comment out the following lines to remove the SSL requirement
LoadModule rewrite_module /usr/lib/apache2/mod_rewrite.so
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/ifolder/(.*) https://%{SERVER_NAME}/ifolder/$1 [R,L]
Нетрудно догадаться, что в данном примере директива Rewrite перенаправляет запрос от http:// на https://
Почитайте про данную директиву (или команду) - много интересного она умеет.
