API的Django基本网址重定向

时间:2018-09-27 09:42:30

标签: python django swagger

enter image description here我是Django Python的新手,正在从事Apis的重定向工作,我在重定向方面遇到问题。 例如:www.example.com现在正在工作,第二台服务器是www.api.example.com,其中我必须将所有api从www.example.com重定向到www.api.example.com和/ apis是所有API命中的api。

url(r'^$', RedirectView.as_view(permanent = False, url='https://api.example.com/'), name='static_data'),

它重定向到url,但参数(以挥杆方式创建以击中的字段)没有通过。 因为我已经在

之类的默认路由器中注册了所有api

router = routers.DefaultRouter() router.register(r'v1 / api1',api1VisitViewSet,“ api1”)

0 个答案:

没有答案