Hi All, I am running apache server ver 2.0.59 on a Linux box on port443 (https).
Here are my Reverse proxy lines... ServerName example.com SSLEngine on SSLOptions +StrictRequire <Directory /> SSLRequireSSL </Directory> SSLProtocol -all +TLSv1 +SSLv3 SSLCipherSuite HIGH:MEDIUM:!aNULL:+SHA1:+MD5:+HIGH:+MEDIUM SSLMutex file:/opt/web/apache2/log/ssl_mutex SSLRandomSeed startup file:/dev/urandom 1024 SSLRandomSeed connect file:/dev/urandom 1024 SSLSessionCache shm:/opt/web/apache2/logs/ssl_cache_shm SSLSessionCacheTimeout 600 SSLPassPhraseDialog builtin SSLCertificateFile /opt/web/apache2/ssl/certs/server.crt SSLCertificateKeyFile /opt/web/apache2/ssl/private/server.key SSLVerifyClient none SSLProxyEngine on ProxyPass / https://internal.com/mobi/ ProxyHTMLURLMap https://internal.com / ProxyPassReverse / https://internal.com/mobi/ <Location /*> SetOutputFilter proxy-html ProxyHTMLURLMap / / RequestHeader unset Accept-Encoding </Location> What i want to do is, to redirect all requests on this server to https://internal.com/mobi/ (not transparently) When i access https://example.com then apache is redirecting to https://internal.com/mobi/ , which is a web page with form. But when i fill out web form, and submit with button, it is going no where(showing blank page). ( i.e., when i submit with button, it is accessing "https://example.com/mobi/track.do" instead of " https://example.com/track.do" ) Thanks, Sharath
