diff --git a/network-api/networkapi/urls.py b/network-api/networkapi/urls.py index 01c01c24f3..8bcfcc1ede 100644 --- a/network-api/networkapi/urls.py +++ b/network-api/networkapi/urls.py @@ -41,13 +41,10 @@ url(r'^wagtail/', include(wagtail_urls)) if settings.ENABLE_WAGTAIL else None, - url(r'^soc/', include('social_django.urls', namespace='social')), - - # Don't remove this redirect until Fellowships pages are live - url(r'^fellowships/$', RedirectView.as_view( - url='https://advocacy.mozilla.org/open-web-fellows' - )) - if settings.SOCIAL_SIGNIN else None, + url(r'^fellowship/(?P.*)', RedirectView.as_view( + url='/fellowships/%(path)s', + query_string=True + )), # network-api routes: url(r'^api/people/', include('networkapi.people.urls')),