On Fri, 21 Sep 2001, pero wrote:
> What could be done now? Encoding all image-resources
> would be a strange solution and other matching is not
> allowed.
i use a layout like so:
/index.jsp
/login.jsp
/share/styles.css
/share/img/*.gif
/main/*.jsp
in web.xml i protect /index.jsp and /main/*. this means
that both protected and unprotected resources can references
things in /share.
it does require a bit of a compromise in structuring the
site, but it makes things work. and i typically make use of
frames in such a fashion that none of the /main/*.jsp urls
are ever seen by the user, so there's no aesthetic concern
:)
that said, i would like to see path-and-extension mapping as
well.