Say for example I have a servlet named FooServlet, mapped to /foo.
There are two other servlets named BarServlet and CarServlet, mapepd to /bar and /car, respectively.
Now, if a user does a direct access to www.example.com/foo, they should be rejected. BUT if the request comes from a forward on /bar or /car, I will allow access to /foo.
Is this possible?