>
> Hi,
>
> My Apache 1.3.9 server sends out images encrypted.
>
> How can I send images not encrypted and save some resources.
>
mod_proxy plus mod_rewrite is your friend.
Create a fake URL for the graphics, say https://your.com/redirect_me/my.gif.
RewriteEngine on
RewriteRule ^redirect_me/(.*) http://your.com/$1 [P]
I've forgotten the necessaries for turning on mod_proxy, but you get the idea.
The request is made securely, and the redirection is done silently inside
Apache.
--- Joe M.
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]