NOTE / EDIT: As I've learnt, the default behaviour is ok SEO wise (one redirect is allowed...multiple is no good). So this is a bit of an overkill.
If my django-cms site is multilingual, visiting domain.com
always redirects to domain.com/default-language/
.
Is there a preferred way/package to make this behaviour go away?
Reason I want it are mainly because of SEO. Best solution would be:
domain.com
=> no redirect
domain.com/default-lang/
=> redirect back to domain.com
domain.com/other-lang/
=> stay as is, as there is translated content
Example: http://www.parkhotel-bellevue.ch does it correctly, now.http://www.parkhotel-bellevue.ch/
redirects to http://www.parkhotel-bellevue.ch/de/
, which is what I dont want.
NOTE: this question is about django-cms, not django alone.