Using org.tuckey to rewrite URLs

The maven dependency is,

<!--  URL Rewrite -->
<dependency>
        <groupId>org.tuckey</groupId>
        <artifactId>urlrewritefilter</artifactId>
        <version>3.1.0</version>
</dependency>

Below is the src/main/webapp/WEB-INF/urlrewrite.xml » file that handles all of the url rewrites. This example is from the springsource mvc-basic » example.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.0//EN" "http://tuckey.org/res/dtds/urlrewrite3.0.dtd">
<urlrewrite default-match-type="wildcard">
        <rule>
                <from>/images/**</from>
                <to>/images/$1</to>
        </rule>
        <rule>
                <from>/scripts/**</from>
                <to>/scripts/$1</to>
        </rule>
        <rule>
                <from>/styles/**</from>
                <to>/styles/$1</to>
        </rule>
        <rule>
                <from>/**</from>
                <to>/app/$1</to>
        </rule>
        <outbound-rule>
                <from>/app/**</from>
                <to>/$1</to>
        </outbound-rule>
</urlrewrite>

Page Comments (Click to edit)






[Click to add or edit comments])

Please prepend comments below including a date

Design by N.Design Studio, adapted by solidGone.org (version 1.0.0)
Have a nice day.