We have to create multi-regional and multilingual web site. For example:
- http://mysite.com/jp/us/ For Japan in English
- http://mysite.com/jp/jp/ For Japan in Japanese
- http://mysite.com/au/us/ For Australia in English
For multiligual, django-cms and i18n_patterns handle it very well. But when I try to use django sites framework to add multi-regional support, it doesnot work as expected :(. I add site with subdomain: mysite.com/au , mysite.com/vn, mysite.com/us. In django-cms admin page I add content to site already. But now I don't know how to config url to match the site.
And I want to have http://mysite.com/<region>/<language>/
but i18n_patterns seem to force url like http://mysite.com/<language>/<region>/
. How to change this also
Please help