diff --git a/www/conservancy/urls.py b/www/conservancy/urls.py index 96a8bf984cde6b1e528e26d18e4bf36ba6c19a81..573c0ec66dbaeff40efa37183e9c21fd24016e2d 100644 --- a/www/conservancy/urls.py +++ b/www/conservancy/urls.py @@ -37,8 +37,8 @@ urlpatterns = [ url(r'^feeds/news/?$', feeds.PressReleaseFeed()), url(r'^feeds/omnibus/?$', feeds.OmnibusFeed()), url(r'^feeds/?$', feeds.view), - url(r'^news(?:/|$)', include('conservancy.apps.news.urls')), - url(r'^blog(?:/|$)', include('conservancy.apps.blog.urls')), + url(r'^news/', include('conservancy.apps.news.urls')), + url(r'^blog/', include('conservancy.apps.blog.urls')), # formerly static templated things... (dirs with templates) url(r'^error/(40[134]|500)(?:/index\.html|/|)$', static_views.handler), url(r'^error', static_views.index),