Revert "Fix index URL so anything else can be served"

This reverts commit 8528e641eca06f20bcf60eb40ea6bb5cae4190b5.
diff --git a/tap/urls.py b/tap/urls.py
index 02779d1..05b102f 100644
--- a/tap/urls.py
+++ b/tap/urls.py
@@ -24,5 +24,5 @@
     url(r'^app_mgr/', include('app_mgr.urls', namespace='app_mgr')),
     #url(r'^api-auth/', include('rest_framework.urls')),
     url(r'^api-token-auth/', token_views.obtain_auth_token),
-    url(r'^', TemplateView.as_view(template_name='index.html')),
+    url(r'', TemplateView.as_view(template_name='index.html')),
 ]