Reputation: 11
I have a query that is surrounded by a fair bit of grey area. When a user accesses the WCM servlet using the authenticated context (www.mywebsite.com/wps/wcm/myconnect/xyz/), if user is not login it is redirect user to hostname:port/wps/wcm/webinterface/login/login.jsp
I would like if user is not login user should be redirected to http://www.mywebsite.com/wps/wcm/webinterface/login/login.jsp instead of http://hostname:10039/wps/wcm/webinterface/login/login.jsp.
So, is it possible to achieve this and if so, would anyone have a suggestion?
Upvotes: 0
Views: 1210
Reputation: 18050
You have to configure WCM_HOST
and WCM_PORT
variables with the fully qualified host name used to access the WCM.
In admin console:
Environment > WebSphere Variables
Node=nodename, Server=servername
WCM_HOST
and WCM_PORT
variablesUpvotes: 0