Hi, Do URLs within a django app always have a trailing '/'? e.g. If I enter a url such as http://localhost:8080/myapp/list it automatically redirects to http://localhost:8080/myapp/list/ and if I define a urlpattern such as (r'^list$', 'list_items') it doesn't match without the trailing slash (r'^list/$', 'list_items').
I'm currently developing using the built in web server by the way. Thanks for any help, -MIchael

