https://issues.apache.org/bugzilla/show_bug.cgi?id=46939
Summary: SES url patterns cannot be defined in the servlet mappings Product: Tomcat 6 Version: unspecified Platform: All OS/Version: All Status: NEW Severity: blocker Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: lmaj...@gmail.com The majority of servlet containers let you define servlet-mappings that can reproduce SES (search engine safe) URL's. Example: http://myhost.com/index.jsp/myvar/value http://myhost.com/index.jsp/entry/hello--there This gives you the ability to create pretty ses url's without the need of an external rewrite tool like mod_rewrite or an ses valve. However, as I am aware of, only Tomcat does not allow these type of servlet mappings. <servlet-mapping> <servlet-name>jsp</servlet-name> <url-pattern>*.jsp/*</url-pattern> </servlet-mapping> The <url-pattern>*.jsp/*</url-pattern> is the one that chokes!! It cannot be defined and used. This to me is a bug as all servlet containers support this type of url-patterns. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org