Hi all, I build an application that will support two locale, that is in_ID and en. I am using PersistentLocale to accomplish this and as consequences all my application url are encoded with selected locale (user set it manually through application menu). So if my application name is xyz and in_ID locale is choosed, my url will: localhost:8080/xyz/in_ID/ If I directly access localhost:8080/xyz/ it will go to en locale because my request header expecting US. What suppose I do to make in_ID the default locale if I access localhost:8080/xyz ?
Thank you, Rendy.