[Answer]-URL Conf – Serving views at the root URL and non root URLs within one app

1👍

url(r'^$', include('myapp.urls', namespace="myapp")),

Remove the ^$ here. This would force all included URLs to match only if starting with “the end”, i.e. nothing.

Leave a comment