I have a project with several views e.g. - index, contacts and about.
And I want url www.aaa.net
links to index view, www.aaa.net/about
to about view and so on
In project urls.py I wrote
url(r'^$', include('mysite.urls'))
In app urls.py I wrote
url(r'^$',views.index,name='index'),
url(r'about/$',views.about,name='about'),
url(r'contacts/$',views.contacts,name='contacts'),
But it works only with index view, about and contacts didn't work at all