我有一个运行环境,其中有一个 apache http 服务器(负载平衡器),后端有一个 tomcat 服务器集群。不过,我被一个问题难住了,我无法将请求 url 重定向或重写为我需要的。例如,
request url - http://www.yyy.com
我想将其重定向或重写为
http://www.yyy.com/mycontext
我尝试重定向和重写但没有运气。
RewriteRule ^/$ http://www.yyy.com/mycontext/ [L] - Error (can't fine the url)
然后我尝试了这个,
Redirect / http://www.yyy.com/mycontext/ - this results in the following,
http://www.yyy.com/mycontext/mycontext/mycontext/mycontext/mycontext/........... repeats.
我无法找出正确的条件语句。我尝试使用服务器变量来编写 rewritecond,但我做错了,它被忽略了。
任何帮助表示赞赏。我在这方面没有太多经验。