bArmageddon
bArmageddon

Reputation: 8548

Can I set two different domains to the same site in django "sites" framework?

Is there a way to set two domains to the same site instance without creating a new one, when using django's "sites" framework?

That means, having www.domain1.com and www.domain2.com to be considered as the same site in the framework.

Upvotes: 0

Views: 378

Answers (1)

Abhishek Agarwala
Abhishek Agarwala

Reputation: 754

You can use this app : https://pypi.python.org/pypi/django-multisite . This is built over the Django's Site Framework, it creates an Alias's table which helps to manage multiple domains pointing to the same site. Again, this also provides various features which are handy for MultiSite Customizations.

Hope this helps :)

Upvotes: 1

Related Questions