From 1408ea2cd8f0aa347397a3abc79bd8eb3a10ef57 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Mon, 1 Feb 2016 17:10:30 +0000 Subject: [PATCH] This is a definition list, so format it as one. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1727974 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_rewrite.xml | 145 ++++++++++++++++++-------------- 1 file changed, 84 insertions(+), 61 deletions(-) diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index e133c7e6a63..1dfa6a20618 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -759,136 +759,152 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
  • You can perform lexicographical string comparisons: -
  • + (the two strings are equal, character for character). + +
  • You can perform integer comparisons: - +
  • You can perform various file attribute tests: - + + RewriteCond /var/www/%{REQUEST_URI} !-f + RewriteRule ^(.+) /other/archive/$1 [R] +
  • -- 2.47.3