配置首页

  1. import test01.views
  2. urlpatterns = [
  3. re_path('^$',test01.views.index),
  4. ]
  5. # 视图
  6. def index(request):
  7. return render(request,'index.html')

网页

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>首页</title>
  6. </head>
  7. <body>
  8. <h1> 欢迎来到网站首页,点击下面可以跳转!</h1>
  9. <a href="/test01/index/"> test01 首页 </a>
  10. <a href="/test02/index/"> test02 首页 </a>
  11. </body>
  12. </html>

实现跳转

image.png