This is a a basic question but I'm having trouble finding the answer in in docs:
Lets say I have a url like:
http://example.com/part1/part2
and I have:
urlpatterns = patterns('',
# Examples:
url(r'^$', 'xxx', name='yyy'),
)
What part of the url string above is attempted to be matched by the regex between ^ and $?
I've read through numerous sources and docs including: