/actions/src/main/webapp/WEB-INF/urlrewrite.xml
http://alageospatialportal.googlecode.com/ · XML · 33 lines · 24 code · 2 blank · 7 comment · 0 complexity · dad92379ae003291a71cfbaff5baf714 MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Document : urlrewrite.xml
- Created on : 12 February 2010, 8:52 PM
- Author : ajayr
- Description:
- url rewrite
- -->
- <!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>