|
1 | | -"""ScanWebShell URL Configuration |
2 | | -
|
3 | | -The `urlpatterns` list routes URLs to views. For more information please see: |
4 | | - https://docs.djangoproject.com/en/3.2/topics/http/urls/ |
5 | | -Examples: |
6 | | -Function views |
7 | | - 1. Add an import: from my_app import views |
8 | | - 2. Add a URL to urlpatterns: path('', views.home, name='home') |
9 | | -Class-based views |
10 | | - 1. Add an import: from other_app.views import Home |
11 | | - 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') |
12 | | -Including another URLconf |
13 | | - 1. Import the include() function: from django.urls import include, path |
14 | | - 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) |
15 | | -""" |
| 1 | +from django.conf.urls import url |
16 | 2 | from django.contrib import admin |
17 | 3 | from django.urls import path,include |
| 4 | +from django.views.static import serve |
18 | 5 | from ScanWebShell import views |
| 6 | +from django.conf import settings |
19 | 7 |
|
20 | | -import user.views |
21 | 8 |
|
22 | 9 | urlpatterns = [ |
23 | 10 | path('', views.index), # 首页 |
24 | 11 | path('index/', views.index), # 首页 |
25 | 12 | path('admin/', admin.site.urls), |
26 | 13 | path('user/', include('user.urls')), |
27 | 14 | path('job/',include('job.urls')), |
28 | | - path('captcha/', include('captcha.urls')) |
| 15 | + path('captcha/', include('captcha.urls')), |
| 16 | + url(r"^static/(?P<path>.*)$", serve, {"document_root": settings.STATIC_ROOT}, name='static'), |
29 | 17 | ] |
0 commit comments