I have a site with a URL like this: www.mydomain/init/foldername/viewname When I type the URL like this *www.mydomain/init/foldername* I don't get the static files loaded. However, when I type *www.mydomain/init/foldername/ *(with a backlash at the very end) the static files are loaded OK. What can be the issue?
I tried to add this in my default.py:
def foldername():
redirect(URL(request.application,'foldername','index'))
but no luck...
--

