Author: mturk
Date: Wed Jun 21 10:54:17 2006
New Revision: 416053
URL: http://svn.apache.org/viewvc?rev=416053&view=rev
Log:
Document the new IIS rewrite.
Modified:
tomcat/connectors/trunk/jk/xdocs/changelog.xml
tomcat/connectors/trunk/jk/xdocs/config/iis.xml
Modified: tomcat/connectors/trunk/jk/xdocs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/changelog.xml?rev=416053&r1=416052&r2=416053&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/xdocs/changelog.xml (original)
+++ tomcat/connectors/trunk/jk/xdocs/changelog.xml Wed Jun 21 10:54:17 2006
@@ -26,6 +26,10 @@
<subsection name="Native">
<changelog>
<update>
+ Added simple rewrite capability for IIS. Although simple it
+ will fulfill most needs. (mturk)
+ </update>
+ <update>
Added RECOVER_ABORT_IF_CLIENTERROR recovery_option that closes
the connection if client connection is broken during the request. (mturk)
</update>
Modified: tomcat/connectors/trunk/jk/xdocs/config/iis.xml
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/config/iis.xml?rev=416053&r1=416052&r2=416053&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/xdocs/config/iis.xml (original)
+++ tomcat/connectors/trunk/jk/xdocs/config/iis.xml Wed Jun 21 10:54:17 2006
@@ -72,6 +72,10 @@
A string value with is the full path to uriworkermap.properties file
(for example <b>c:\jakarta-tomcat\conf\uriworkermap.properties</b>)
</p></attribute>
+<attribute name="rewrite_rule_file" required="true"><p>
+A string value with is the full path to rewrite.properties file
+(for example <b>c:\jakarta-tomcat\conf\rewrite.properties</b>)
+</p></attribute>
</attributes>
</section>
@@ -120,5 +124,31 @@
</ul>
</p>
</section>
+
+<section name="Using a simple rewrite rules">
+<p>
+The ISAPI redirector with version 1.2.16 can do a simple URL rewriting.
Althought not
+as powerfull as Apache Httpd's mod_rewrite, it allows a simple exchange of
request uris
+</p>
+<p>
+The rule is in the form rewritten=real-url.
+</p>
+<p>
+The rules must be simple strings. For example:
+</p>
+<p>
+<source>
+# Simple rewrite rules
+
+/jsp/=/jsp-examples/
+/servlets/=/servlets-examples/
+
+</source>
+</p>
+<p>
+Note that the uriworkermap or mount point must point to that new rule.
+</p>
+</section>
+
</body>
</document>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]