I have a Google Appengine/Guice/Wicket Application. My problem is that due to the mapping I can\'t access the /_ah/admin Page anymore.
My Servlet Module says:
I solved the same problem with Spring/GAE using the UrlRewriteFilter. Please take a look at the source here. I assume a similar solution could be used for your situation.
^/appstats/(.*)$ /appstats/$1 ^/_ah/(.*)$ /_ah/$1 ^/(.*)$ /app/$1