You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I understand what IgnoreBase does but can't convince myself that it should be the preferred option (as suggested in #1701). Could we have some documentation to justify its proper use? Thanks!
Here is an example to show why I think NOT using it feels more natural.
public/
index.html # says: public
a/
index.html # says: outer a
a/
index.html # says: inner a
Test:
$ curl http://localhost:9000/a/ # OK
public
$ curl http://localhost:9000/a/a # really?
public
$ curl http://localhost:9000/a/a/a
outer a
$ curl http://localhost:9000/a/a/a/a # so long?
inner a
$ curl http://localhost:9000/b/ # OK
public
$ curl http://localhost:9000/b/a # OK
outer a
$ curl http://localhost:9000/b/a/a # OK
inner a
The text was updated successfully, but these errors were encountered:
I understand what
IgnoreBase
does but can't convince myself that it should be the preferred option (as suggested in #1701). Could we have some documentation to justify its proper use? Thanks!Here is an example to show why I think NOT using it feels more natural.
File system structure:
Test:
The text was updated successfully, but these errors were encountered: