Skip to content

Commit

Permalink
Merge branch 'master' into design-update
Browse files Browse the repository at this point in the history
  • Loading branch information
Knut Hühne committed Jun 28, 2016
2 parents 34d0f52 + 440f3d3 commit 627bae5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions foundation/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,17 @@
# Fallthrough prefix redirects. WARNING: these will override any pages
# created in the CMS with these names.
url(r'^blogs/(?P<remain>.+)$',
RedirectView.as_view(url=ARCHIVE_ROOT + '/blogs/%(remain)s')),
RedirectView.as_view(url=ARCHIVE_ROOT + '/blogs/%(remain)s',
permanent=True)),
url(r'^members/(?P<remain>.+)$',
RedirectView.as_view(url=ARCHIVE_ROOT + '/members/%(remain)s')),
RedirectView.as_view(url=ARCHIVE_ROOT + '/members/%(remain)s',
permanent=True)),
url(r'^wp-content/(?P<remain>.+)$',
RedirectView.as_view(url=ARCHIVE_ROOT + '/wp-content/%(remain)s')),
RedirectView.as_view(url=ARCHIVE_ROOT + '/wp-content/%(remain)s',
permanent=True)),
url(r'^wp-includes/(?P<remain>.+)$',
RedirectView.as_view(url=ARCHIVE_ROOT + '/wp-includes/%(remain)s')),
RedirectView.as_view(url=ARCHIVE_ROOT + '/wp-includes/%(remain)s',
permanent=True)),

# Fallthrough for CMS managed pages
url(r'^', include('cms.urls'))
Expand Down

0 comments on commit 627bae5

Please sign in to comment.