简体   繁体   中英

Django Allowed_Hosts Error.

I'm trying to run a django server with ./manage.py runserver

But appears this error:

Invalid HTTP_HOST header: '127.0.0.1:8000'. You may need to add '127.0.0.1' to ALLOWED_HOSTS.

Please help me.

Just do this

myapp
|______myapp
           |______settings.py

Inside that there should be a line:

ALLOWED_HOSTS = []

Make it instead

ALLOWED_HOSTS = ["127.0.0.1"]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM