<?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 Re: HPUX apache mod_rewrite in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472597#M849591</link>
    <description>I'm wondering what the goal is. Are you trying to get enhanced information on your users into a log?&lt;BR /&gt;&lt;BR /&gt;Only for the page test.html?&lt;BR /&gt;&lt;BR /&gt;Inquiring minds want to know.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Thu, 27 Jan 2005 11:45:20 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2005-01-27T11:45:20Z</dc:date>
    <item>
      <title>HPUX apache mod_rewrite</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472593#M849587</link>
      <description>I have apache installed as a standard version from hpux, I'm running on a rx1600 server. I have defined a reverse-proxy and that works witout problem but I want to rewrite the information but the rewrite does not work at all.&lt;BR /&gt;Not even the logfile is created...&lt;BR /&gt;&lt;BR /&gt;&lt;VIRTUALHOST 8080=""&gt;&lt;BR /&gt;DocumentRoot "/opt/hpws/apache/htdocs"&lt;BR /&gt;ServerName  some.name.com&lt;BR /&gt;RewriteEngine on&lt;BR /&gt;RewriteLog logs/rewite-debug.log&lt;BR /&gt;RewriteLogLevel 5&lt;BR /&gt;RewriteRule  ^(.*) /$1/test.html [L]&lt;BR /&gt;&lt;LOCATION&gt;&lt;/LOCATION&gt;&lt;BR /&gt;   Options None&lt;BR /&gt;   AllowOverride Authconfig&lt;BR /&gt;   AuthName "Auth"&lt;BR /&gt;   AuthType Basic&lt;BR /&gt;   AuthUserFile conf/auth.passwd&lt;BR /&gt;   require valid-user&lt;BR /&gt;   SetEnv REMOTE_ADDR External&lt;BR /&gt;&lt;/VIRTUALHOST&gt;&lt;BR /&gt;ProxyPass / &lt;A href="http://131.1.1.2/" target="_blank"&gt;http://131.1.1.2/&lt;/A&gt;&lt;BR /&gt;CustomLog logs/access_log_1 common&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/hpws_apache stop&lt;BR /&gt;/sbin/init.d/hpws_apache start&lt;BR /&gt;&lt;BR /&gt;How can i see if the rewrite_mod is installed, If i look into /opt/hpws/apache/modules I have a file called:&lt;BR /&gt;-r-xr-xr-x   1 bin        bin         207512 Jul 23  2003 mod_rewrite.so&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Jan 2005 09:06:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472593#M849587</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2005-01-27T09:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX apache mod_rewrite</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472594#M849588</link>
      <description>there ought to be an option to apachectl that lists the loaded modules. If that doesn't work, You can use the http://servername/server-info/ page (access must be enabled in httpd.conf first)</description>
      <pubDate>Thu, 27 Jan 2005 09:18:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472594#M849588</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-01-27T09:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX apache mod_rewrite</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472595#M849589</link>
      <description>in httpd.conf:&lt;BR /&gt;LoadModule rewrite_module modules/mod_rewrite.so&lt;BR /&gt;&lt;BR /&gt;So the module should be loaded. I have a problem connecting directly to the server all active ports pass though :-).</description>
      <pubDate>Thu, 27 Jan 2005 09:25:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472595#M849589</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2005-01-27T09:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX apache mod_rewrite</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472596#M849590</link>
      <description>sollution is to - NOT using proxypass but redirect though RewriteRule... like this:&lt;BR /&gt;RewriteRule  ^/(.*)$   &lt;A href="http://131.1.1.2/$1?user=%{REMOTE_USER}&amp;amp;ip=%{REMOTE_ADDR}" target="_blank"&gt;http://131.1.1.2/$1?user=%{REMOTE_USER}&amp;amp;ip=%{REMOTE_ADDR}&lt;/A&gt; [P]&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Jan 2005 10:52:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472596#M849590</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2005-01-27T10:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX apache mod_rewrite</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472597#M849591</link>
      <description>I'm wondering what the goal is. Are you trying to get enhanced information on your users into a log?&lt;BR /&gt;&lt;BR /&gt;Only for the page test.html?&lt;BR /&gt;&lt;BR /&gt;Inquiring minds want to know.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 27 Jan 2005 11:45:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472597#M849591</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-27T11:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX apache mod_rewrite</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472598#M849592</link>
      <description>My goal was to get proxypass to work with rewriteengine, the information test.html was just to test it. What i needed was to pass the local information to the web site behind the firewall.&lt;BR /&gt;And it works like a dream... but thx for asking this is the string:&lt;BR /&gt;RewriteRule  ^/(.*)$   &lt;A href="http://131.1.1.2/$1?user=%{LA-U:REMOTE_USER}&amp;amp;ip=%{REMOTE_ADDR}" target="_blank"&gt;http://131.1.1.2/$1?user=%{LA-U:REMOTE_USER}&amp;amp;ip=%{REMOTE_ADDR}&lt;/A&gt; [P,QSA]&lt;BR /&gt;when you are passed though the proxy the URI is attached with user and ip from the location information in the virtual server.</description>
      <pubDate>Thu, 27 Jan 2005 14:04:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-apache-mod-rewrite/m-p/3472598#M849592</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2005-01-27T14:04:19Z</dc:date>
    </item>
  </channel>
</rss>

