Hi All,
Thanks very much for the insights, by the way, in the end I've decided to
completely remove the bin url component by using the default Weblogic
Servlet, something like the following:
<servlet>
<servlet-name>defaultServlet</servlet-name>
<servlet-class>weblogic.servlet.FileServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>defaultServlet</servlet-name>
<url-pattern>/skins/*</url-pattern>
<url-pattern>/resources/*</url-pattern>
</servlet-mapping>
Furthermore, in order not to have the bin component displayed as homePage
component, I got rid of it by this xwiki pre-configured web.xml entry:
<servlet>
<servlet-name>redirectHomeServlet</servlet-name>
<servlet-class>com.xpn.xwiki.web.HomePageRedirectServlet</servlet-class>
<init-param>
<description>The address to redirect to when the client hits the root
of the application.</description>
<param-name>homePage</param-name>
<param-value>Main/</param-value>
</init-param>
</servlet>
Specifically, <param-value>Main/</param-value> prevents the bin url to be
displayed at all.
Cheers
Nicola
--
View this message in context:
http://n2.nabble.com/Re-URL-How-to-rename-bin-to-wiki-or-something-else-tp4…
Sent from the XWiki- Dev mailing list archive at
Nabble.com.