我在 django 中有一个应用程序,它有一个带有按钮的网页,可以通过菜单和 8 个 href 访问另一个页面。当我前往第一页并尝试单击另一页时,我会遇到 404 错误。
Page not found (404)
http://127.0.0.1:8000/index.html/contact
这是我的 url.py
urlpatterns = [
path('index.html/', views.homepage),
path('contact.html/', views.contact),
path('about.html/', views.about),
]
意见也一样
def customers(request):
return render(request, 'customers.html')
def about(request):
return render(request, 'about.html')
def contact(request):
form_class = ContactForm
return render(request, 'contact.html', {
'form': form_class,
})
设置不变。我相信这就是为网页制作 URL 路径的全部内容。
我不想要http://127.0.0.1:8000/index.html/contact
我想要http://127.0.0.1:8000/index
或http://127.0.0.1:8000/contact
如何保持我的 URL 基本?