/actions/src/main/webapp/WEB-INF/urlrewrite.xml
XML | 33 lines | 24 code | 2 blank | 7 comment | 0 complexity | dad92379ae003291a71cfbaff5baf714 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2 3<!-- 4 Document : urlrewrite.xml 5 Created on : 12 February 2010, 8:52 PM 6 Author : ajayr 7 Description: 8 url rewrite 9--> 10 11<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.0//EN" "http://tuckey.org/res/dtds/urlrewrite3.0.dtd"> 12<urlrewrite default-match-type="wildcard"> 13 <rule> 14 <from>/images/**</from> 15 <to>/images/$1</to> 16 </rule> 17 <rule> 18 <from>/scripts/**</from> 19 <to>/scripts/$1</to> 20 </rule> 21 <rule> 22 <from>/styles/**</from> 23 <to>/styles/$1</to> 24 </rule> 25 <rule> 26 <from>/**</from> 27 <to>/app/$1</to> 28 </rule> 29 <outbound-rule> 30 <from>/app/**</from> 31 <to>/$1</to> 32 </outbound-rule> 33</urlrewrite>