标签: python django django-urls
我正在尝试为http://localhost:8000/api/http://www.google.com/
http://localhost:8000/api/http://www.google.com/
是url(r'^api/(?P<url>(:\d+)+[.\w]+)/$', 'qlu_app.views.api', name='api'),
url(r'^api/(?P<url>(:\d+)+[.\w]+)/$', 'qlu_app.views.api', name='api'),
但它不起作用。有人可以帮助我。
答案 0 :(得分:3)
试一试:
url(r'^api/(?P<url>[:\/\.\w]+)/$', 'qlu_app.views.api', name='api'),