5

我看到Liferay 6.1 GA2在不同的机器上生成了不同的 URL,即使我在浏览器中输入以下相同的 URL:

http://my.ip.0.202:8080/

Machine-1 的浏览器生成:

http://my.ip.0.202:8080/en_GB/web/guest/home

Machine-2 的浏览器生成:

http://my.ip.0.202:8080/web/guest/home

两台机器上的配置,如语言设置、本地设置、浏览器设置、控制面​​板设置似乎相同。

谁能告诉我这是什么原因,我怎样才能强制两台机器的浏览器呈现相同的 URLhttp://my.ip.0.202:8080/web/guest/home

谢谢

4

1 回答 1

4

你检查过 Liferay Wiki:Configure time zone and locale

我没有尝试过,但据我的一位同事说:

两台机器可能存在本地化不匹配。因此,对于一台机器,“en_GB”会自动附加到 URL。

该问题可以通过在 portal-ext.properties 中设置一个属性来解决

locale.prepend.friendly.url.style=0 (by default it is set to 1).

以下直接来自portal.properties

#
# Set this to 0 if the locale is not automatically prepended to a URL. This
# means that each URL could potentially point to many different languages.
# For example, the URL http://localhost:8080/web/guest/home could then be
# viewed by users in many different languages.
#
# Set this to 1 if the locale is automatically prepended to a URL when the
# requested locale is not the default locale. This means that each URL
# points to just one language. For example, the URL
# http://localhost:8080/web/guest/home would point to the default language.
# The URL http://localhost:8080/zh/web/guest/home and
# http://localhost:8080/zh_CN/web/guest/home would both point to the Chinese
# language.
#
# In cases where the prepended locale is "zh" and not complete locale
# "zh_CN", then the full locale returned will be based on the order in which
# the locales appear in the property "locales". If "zh_CN" appears before
# "zh_TW", then "zh" will be a short hand for "zh_TW".
#
# The default language is set in system.properties with the properties
# "user.country" and "user.language".
#
# Set this to 2 if the locale is automatically prepended to every URL. This
# means that each URL points to just one language.
#
# Note that each language requires an entry in the property "locales" and a
# servlet mapping in web.xml for the I18n Servlet.
#
locale.prepend.friendly.url.style=1

希望这可以帮助。

于 2012-10-11T08:45:26.563 回答