Page not found (404)

“/home/ubuntu/RevisMed/RevisMedProject/RevisMedProjectApp/assets/produse-si-aparatura-medicala” does not exist
Request Method: GET
Request URL: http://revismed.ro/produse-si-aparatura-medicala/?add-to-cart=5517
Raised by: django.views.static.serve

Using the URLconf defined in RevisMedProjectConfig.urls, Django tried these URL patterns, in this order:

  1. admin/
  2. [name='home']
  3. ^(?P<slug>[\w-]+)$ [name='default-page']
  4. ^(?P<slug>[\w-]+)/producator/(?P<supplier_slug>[\w-]+)$ [name='product-supplier-page']
  5. ^(?P<slug>[\w-]+)/categorie/(?P<category_slug>[\w-]+)$ [name='product-category-page']
  6. ^(?P<slug>[\w-]+)/categorie/(?P<category_slug>[\w-]+)/producator/(?P<supplier_slug>[\w-]+)/(?P<product_slug>[\w-]+)$ [name='product-page']
  7. ^(?P<slug>[\w-]+)/send-email$ [name='send_email']
  8. ^(?P<path>.*)$

The current path, produse-si-aparatura-medicala/, matched the last one.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.