[EMAIL PROTECTED] wrote:
Hi,I'd like to do JKMount /admin/* adminloadbalancer but need the alias for /admin to point to /services/admin. I would be very grateful if someone could explain the best option...
Use mod_rewrite. You need to rewrite the incoming URL on the fly, right? RewriteEngine on RewriteRule ^/examples/(.*) /servlets-examples/$1 [PT] JkMount /servlets-examples/* myworker In your case it should be: RewriteRule ^/admin/(.*) /services/admin/$1 [PT] JkMount /services/admin/* adminloadbalance Regards, Mladen. --------------------------------------------------------------------- To start a new topic, e-mail: [email protected] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
