Hi guys. The default django url configuration system seems does not allow url with "dot", i.e. I need url like "http://mysite.com/user/favorate/web2.0", but this url con't match any url configuration even I use following config:
(r'^user/favorate/(?P<name>.*)$', 'test.fav.index'), Any suggestion?