<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Apache mod_rewrite.log interpretation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008897#M128158</link>
    <description>Can someone point me to documentation that&lt;BR /&gt;explains the terminology used in the Apache&lt;BR /&gt;mod_rewrite log. I'm testing Rewrite rules&lt;BR /&gt;with log level 9 set, and I get plenty of output&lt;BR /&gt;in the mod_rewrite.log, but I don't quite understand all of it. For example, terms such as "pass through".&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 26 Jun 2003 15:01:32 GMT</pubDate>
    <dc:creator>Leon A. Howorth</dc:creator>
    <dc:date>2003-06-26T15:01:32Z</dc:date>
    <item>
      <title>Apache mod_rewrite.log interpretation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008897#M128158</link>
      <description>Can someone point me to documentation that&lt;BR /&gt;explains the terminology used in the Apache&lt;BR /&gt;mod_rewrite log. I'm testing Rewrite rules&lt;BR /&gt;with log level 9 set, and I get plenty of output&lt;BR /&gt;in the mod_rewrite.log, but I don't quite understand all of it. For example, terms such as "pass through".&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Jun 2003 15:01:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008897#M128158</guid>
      <dc:creator>Leon A. Howorth</dc:creator>
      <dc:date>2003-06-26T15:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Apache mod_rewrite.log interpretation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008898#M128159</link>
      <description>&lt;A href="http://www.engelschall.com/pw/apache/rewriteguide/" target="_blank"&gt;http://www.engelschall.com/pw/apache/rewriteguide/&lt;/A&gt;</description>
      <pubDate>Thu, 26 Jun 2003 15:04:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008898#M128159</guid>
      <dc:creator>Elena Leontieva</dc:creator>
      <dc:date>2003-06-26T15:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Apache mod_rewrite.log interpretation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008899#M128160</link>
      <description>Thanks for the link to that guide, however it&lt;BR /&gt;does not contain information specific to the&lt;BR /&gt;mod_rewrite.log terminology.</description>
      <pubDate>Fri, 27 Jun 2003 11:02:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008899#M128160</guid>
      <dc:creator>Leon A. Howorth</dc:creator>
      <dc:date>2003-06-27T11:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Apache mod_rewrite.log interpretation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008900#M128161</link>
      <description>'passthrough|PT' (pass through to next handler)&lt;BR /&gt;This flag forces the rewriting engine to set the uri field of the internal request_rec structure to the value of the filename field. This flag is just a hack to be able to post-process the output of RewriteRule directives by Alias, ScriptAlias, Redirect, etc. directives from other URI-to-filename translators. A trivial example to show the semantics: If you want to rewrite /abc to /def via the rewriting engine of mod_rewrite and then /def to /ghi with mod_alias: &lt;BR /&gt;    RewriteRule ^/abc(.*)  /def$1 [PT]&lt;BR /&gt;    Alias       /def       /ghi&lt;BR /&gt;   &lt;BR /&gt;If you omit the PT flag then mod_rewrite will do its job fine, i.e., it rewrites uri=/abc/... to filename=/def/... as a full API-compliant URI-to-filename translator should do. Then mod_alias comes and tries to do a URI-to-filename transition which will not work. &lt;BR /&gt;Note: You have to use this flag if you want to intermix directives of different modules which contain URL-to-filename translators. The typical example is the use of mod_alias and mod_rewrite..&lt;BR /&gt;&lt;BR /&gt;Note - For Apache hackers:&lt;BR /&gt;If the current Apache API had a filename-to-filename hook additionally to the URI-to-filename hook then we wouldn't need this flag! But without such a hook this flag is the only solution. The Apache Group has discussed this problem and will add such a hook in Apache version 2.0.  &lt;BR /&gt;</description>
      <pubDate>Fri, 27 Jun 2003 11:33:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008900#M128161</guid>
      <dc:creator>Elena Leontieva</dc:creator>
      <dc:date>2003-06-27T11:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Apache mod_rewrite.log interpretation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008901#M128162</link>
      <description>I've attached the source code for the function that writes out to the log file in mod_rewrite.  &lt;BR /&gt;&lt;BR /&gt;The section at line 3517 specifically specifies what fields are being output to the log, and in what order.</description>
      <pubDate>Fri, 27 Jun 2003 11:35:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/apache-mod-rewrite-log-interpretation/m-p/3008901#M128162</guid>
      <dc:creator>Bill Douglass</dc:creator>
      <dc:date>2003-06-27T11:35:25Z</dc:date>
    </item>
  </channel>
</rss>

