Short XWiki URLs
This tutorial shows you how to tune your XWiki platform by replacing the default URL scheme with a shorter scheme.
I. Application name
The /xwiki/ part of the URL is the application name. It identifies the application that should process the request, and it allows a container to host more than one application. To change it you must refer to your container's documentation and find how to map the context path of a web application. For example on Tomcat it's enough to simply deploy the XWiki webapp in the webapps directory, in a sub directory named after the application name you wish to use (e.g. webapps/myappname).
A special case is when deploying XWiki as the ROOT application, which actually allows the application name part to be empty, so an URL can take the form server.com/bin/view/Space/Document. Achieving this depends on the container, as there's no standard regarding the ROOT application. For example:
- in Tomcat, with the default configuration, all it takes is to deploy the XWiki web application in webapps, in a sub directory named ROOT (i.e. webapps/ROOT).
- In Jetty, with the default configuration, all it takes is to deploy the XWiki web application in webapps, in a sub directory named root. Note that if you're using the Standalone distribution (which packages Jetty and HSQLDB) then you'll also need to:
- Remove the existing webapps/root directory which contains a redirect Servlet that automatically redirects root URLs to the xwiki context. You won't need that anymore.
- Rename the existing webapps/xwiki directory into webapps/root.
- Remove the jetty/contexts/xwiki.xml file and thus keep only the jetty/contexts/root.xml file. Otherwise you'll get a warning in the console.
Refer to your container's documentation for more details.
II. Servlet mapping name
The second part is the hardest part to remove. It identifies the servlet that should process the page, which, for /bin/, is the Struts servlet. Generically speaking, to get rid of /bin/, you need to configure your system so that URLs matching /* are mapped to the Struts Servlet (by default only /bin/* URLs are mapped to the Struts Servlet).
However you need to be careful that the following prefixes do NOT go through the Struts Servlet (see your web.xml to check their mappings):
- /resources/* and /skins/*: Statically served resources. These need to be served directly as static resources.
- /rest/*: REST resources
- /xmlrpc/*: XML-RPC resources
- *.gwtrpc: GWT-RPC calls
- /webdav/*: WebDav calls
- /XWikiService: XWiki GWT Servlet
- /redirect: The XWiki Redirect Servlet used to redirect to the home page when no page is specified in the URL
There are various alternate ways to achieve this as detailed below.
Now XWiki also generates URL and you can tell it to generate URLs without the bin/ part by adding this piece of code in xwiki.cfg: xwiki.defaultservletpath= (this is not required with the UrlRewriteFilter solution sine it rewrites outbound URLs too).
UrlRewriteFilter
This is a framework offering a Servlet Filter allowing to rewrite URLs. Install it and drop the following configuration in WEB-INF/urlrewrite.xml:
<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 4.0//EN"
"http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd">
<urlrewrite>
<rule>
<note>
Ensure that URLs ending with .gwtrpc are not modified.
</note>
<from>^/(.*)\.gwtrpc$</from>
<to type="forward" last="true">-</to>
</rule>
<rule>
<note>
En sure that URLs that must not be served by the Struts Servlet are not modified.
</note>
<from>^/(bin|resources|skins|rest|webdav|xmlrpc)/(.*)$</from>
<to type="forward" last="true">-</to>
</rule>
<rule>
<note>
For all other URLs we prepend the "/bin/" prefix so that they get routed to the XWiki Action Servlet.
</note>
<from>^/(.*)$</from>
<to type="forward">/bin/$1</to>
</rule>
<outbound-rule>
<note>
Rewrite outbound URLs to remove the "/bin" part.
</note>
<from>/bin/(.*)/(.*)$</from>
<to>/$1/$2</to>
</outbound-rule>
</urlrewrite>