ciao!

sto seguendo il tutorial su django, che mi ha fatto creare una app all'interno del progetto.
il problema è che quando avvio il server di test, e vado su http://127.0.0.1:8000/
codice:
     Page not found (404)     
Request Method: GET
Request URL: http://127.0.0.1:8000/
Using the URLconf defined in matteoferrone.urls, Django tried these URL patterns, in this order:
  1. mf/
  2. admin/
The empty path didn't match any of these. 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.
ovviamente gli altri due urls funzionano.
come faccio a dirgli di fare il redirect in automatico da http://127.0.0.1:8000/ a http://127.0.0.1:8000/mf ???