Skip to content
Advertisement

Tag: django-subdomains

One view for multiple sub-domains using django-hosts

I need to have multiple sub domains for my project. Each sub domain represents some company. For example: company1.myproject.io, company2.myproject.io. I used django-hosts library to set up sub domains. hosts file: settings.py: core/hosts.py: hostsconf/urls.py: hostsconf/views.py: I have a few problems now: When I go to myproject.io it succesfully redirects me to the www.myproject.io. But when I go to company1.myproject.io I

Advertisement