Subject: | empty path_info should resolve to / |
I *think* if a request comes with an empty PATH_INFO that Web::Simple should interpret that as "/". According to the PSGI spec on PATH_INFO:
This may be an empty string if the request URL targets the application root and does not have a trailing slash.
Right now, some servers will send an empty PATH_INFO value on GET / HTTP/1.0 and then (GET + /) will not match.