我已经将子域(http://xx.example.com)指向了tomcat webapp中的app1,它工作正常。但是,如果我尝试访问http://xx.example.com/app1链接,它也可以工作。我只需要用户访问http://xx.example.com,而不能访问此http://xx.example.com/app1,如果有人尝试访问它,则会引发错误。
Server.xml配置
<Host name="xx.example.com" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Alias>www.xx.exmaple.com</Alias>
<Context path="" docBase="app1" debug="0" privileged="true" />
<Valve className="org.apache.catalina.valves.AccessLogValve"
directory="logs" prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" resolveHosts="false" />
</Host>
谢谢。