Reputation: 29261
It is possible to create a landing page in Liferay? If so, in which version? And how?
Upvotes: 2
Views: 3112
Reputation: 1798
Modifying liferay to use a landing page was there from version 5. You can also set this using properties file. Create (if you have not done before) a portal-ext.properties file in webapp/ROOT/WEB-INF/classes folder with these lines modified according to you.
##
## Default Landing Page
##
#
# Set the default landing page path for logged in users relative to the
# server path. This is the page users are automatically redirected to after
# logging in. For example, if you want the default landing page to be
# http://localhost:8080/web/guest/login, set this to /web/guest/login. To
# activate this feature, set auth.forward.by.last.path to true. To customize
# the behavior, see com.liferay.portal.events.DefaultLandingPageAction in
# the "login.events.post" property above.
#
default.landing.page.path=
#default.landing.page.path=/web/guest/login
Upvotes: 1
Reputation: 4285
This can be achieve this the following way :
These steps are for Liferay 6.1.0 CE.
Upvotes: 5