Reputation: 8548
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
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