cancel
Showing results for 
Search instead for 
Did you mean: 

redirect guest user to login page

pixelwind
Champ in-the-making
Champ in-the-making
i want to redirect the guest user to the login page. it think the easiest way would be to delete the guest user, but i don't want to delete the the guest user, because i want to use the rss-function, and i think for these i need the guest user. so where can i modify the destination of the redirection?
1 REPLY 1

gavinc
Champ in-the-making
Champ in-the-making
I think the combination of the following config values should allow you to do what you want:

<initial-location>myalfresco</initial-location>
<allow-guest-config>false</allow-guest-config>

Look for these in web-client-config.xml. You could then do this in your web-client-config-custom.xml file:

<config>
   <client>
      <initial-location>userhome</initial-location>
      <allow-guest-config>true</allow-guest-config>
   </client>
</config>

Hope this helps!