|
Developed this small servlet, Servlet Path Info to test Apache mod_rewrite.
Screenshot of the servlet in action:
The corresponding mod_rewrite configuration:
RewriteEngine on
RewriteRule ^/events/?$ http://localhost:8080/servlet-path-info-0.1.0/calendar [NC,P,L]
RewriteRule ^/events/(.+)$ http://localhost:8080/servlet-path-info-0.1.0/eventdetail/-/calendardetail/$1 [NC,P,L]
|