SOMETHING を非必須にしたいので、基本的には自動的www.site.com/endpoint
にリダイレクトしたいと考えていwww.site.com/something/endpoint
ます。1行でそれを行う方法はありますか?
今私はやっています:
url(r'^SOMETHING/endpoint$', 'endpoint', name='endpoint'),
url(r'^endpoint$', RedirectView.as_view(url='SOMETHING/endpoint')),
乾杯。