Looking for how to convert this to Django 1.10:
('^plugins/(?P<path>.*)$', 'redirect_to', {'url': '/static/plugins/%(path)s'}),
Basically I have ~50 files in a HTML theme that reference files at /plugins/blah-blah and I want to serve via /static/plugins/blah-blah.
So any request to /plugins should go to /static/plugins - any idea how?
Probably you can look into
RedirectView(django 1.10):