zeus is cern derivetives, so does apache. (imho).
Main Topics
Browse All TopicsHi
I was never particularly good with rewriterules on Apache let alone Zeus, so I was wondering if someone would be kind enough to put together a rewriterule for me that will do the following:
Any request to http://<<server_name>>/adm
should be redirected to https://<<server_name>>/ad
Basically the request should force https if the admin directory is called and could be any one of the following and I'd like the rewriterule to work for all possiblities (the server name could be different as well - I would like this to be as generic as possible):
http://www.server.com/admi
http://www.server.com/admi
http://www.server2.com/adm
http://www.server2.com/adm
Cheers
Ant
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: BigRatPosted on 2002-11-08 at 04:20:29ID: 7424441
The Apache rewrite would be
[R]
^/admin/(*)?(*)$ https://server/admin/$1?$2
ie: I'd do a redirect. Otherwise I'm involved with proxies.
Sorry, don't know Zeus, but it still perhaps uses RegEx.
HTH