<?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: Oracle HTTP Server URL Redirection in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253982#M887741</link>
    <description>Ganesh, it did nt help</description>
    <pubDate>Tue, 20 Apr 2004 17:48:17 GMT</pubDate>
    <dc:creator>Sundar_7</dc:creator>
    <dc:date>2004-04-20T17:48:17Z</dc:date>
    <item>
      <title>Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253977#M887736</link>
      <description>I am asked to setup a Oracle HTTP server in one of my development server. We are going to primarily use the mod_plsql module to execute the SQL procedures on a database instance.&lt;BR /&gt;&lt;BR /&gt;I configured Database Access Descriptor (DAD) and managed to get everything working&lt;BR /&gt;&lt;BR /&gt;Now the user has to try&lt;BR /&gt;&lt;BR /&gt;  http://&lt;WEBSERVER&gt;/pls/&lt;DAD&gt;/&lt;PROCEDURE&gt;&lt;BR /&gt;   &lt;A href="http://somewebserver.comp.com/pls/database1/helloworld" target="_blank"&gt;http://somewebserver.comp.com/pls/database1/helloworld&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;But since this server is going to be used for executing the procedure only on one database I would like the user to be able to use&lt;BR /&gt;&lt;BR /&gt;  http://&lt;WEBSERVER&gt;/&lt;PROCEDURE&gt; &lt;BR /&gt; &lt;BR /&gt;  &lt;A href="http://somewebserver.comp.com/helloworld." target="_blank"&gt;http://somewebserver.comp.com/helloworld.&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;  I am very new to apache and tried rewriting URL rules - any help will be appreciated&lt;BR /&gt;&lt;BR /&gt;-- Sundar.&lt;/PROCEDURE&gt;&lt;/WEBSERVER&gt;&lt;/PROCEDURE&gt;&lt;/DAD&gt;&lt;/WEBSERVER&gt;</description>
      <pubDate>Tue, 20 Apr 2004 12:58:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253977#M887736</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-04-20T12:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253978#M887737</link>
      <description>Oracle http server is an apache port.&lt;BR /&gt;&lt;BR /&gt;All redirection that works with apache will work with oracle. That includes web pages and httpd.conf directives.&lt;BR /&gt;&lt;BR /&gt;httpd syntax check should show some potential problems.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 20 Apr 2004 13:11:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253978#M887737</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-04-20T13:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253979#M887738</link>
      <description>can u post what u rewrote for the URL rules and which files??&lt;BR /&gt;&lt;BR /&gt;Ganesh</description>
      <pubDate>Tue, 20 Apr 2004 13:46:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253979#M887738</guid>
      <dc:creator>Ganesh Babu</dc:creator>
      <dc:date>2004-04-20T13:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253980#M887739</link>
      <description>&lt;BR /&gt; RewriteEnginer on&lt;BR /&gt; RewriteRule ^&lt;WEBSERVER&gt;/(.+)$ &lt;WEBSERVER&gt;/pls/database1/$1&lt;/WEBSERVER&gt;&lt;/WEBSERVER&gt;</description>
      <pubDate>Tue, 20 Apr 2004 15:20:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253980#M887739</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-04-20T15:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253981#M887740</link>
      <description>Can u try this&lt;BR /&gt;&lt;BR /&gt;RewriteEngine on&lt;BR /&gt;RewriteCond %{HTTP_PHOST} ^&lt;WEBSERVER&gt;(.)+$&lt;BR /&gt;RewriteRule ^&lt;WEBSERVER&gt;/(.+)$ pls/database1/$1 [R]&lt;BR /&gt;&lt;BR /&gt;Ganesh&lt;/WEBSERVER&gt;&lt;/WEBSERVER&gt;</description>
      <pubDate>Tue, 20 Apr 2004 15:46:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253981#M887740</guid>
      <dc:creator>Ganesh Babu</dc:creator>
      <dc:date>2004-04-20T15:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253982#M887741</link>
      <description>Ganesh, it did nt help</description>
      <pubDate>Tue, 20 Apr 2004 17:48:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253982#M887741</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-04-20T17:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253983#M887742</link>
      <description>Sundar,&lt;BR /&gt;&lt;BR /&gt;this line &lt;BR /&gt;&lt;BR /&gt;RewriteCond %{HTTP_PHOST} ^&lt;WEBSERVER&gt;(.)+$&lt;BR /&gt;&lt;BR /&gt;is not HTTP_PHOST it has to be HTTP_HOST..&lt;BR /&gt;&lt;BR /&gt;sorry i missed it..&lt;BR /&gt;&lt;BR /&gt;Ganesh&lt;/WEBSERVER&gt;</description>
      <pubDate>Tue, 20 Apr 2004 18:09:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253983#M887742</guid>
      <dc:creator>Ganesh Babu</dc:creator>
      <dc:date>2004-04-20T18:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle HTTP Server URL Redirection</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253984#M887743</link>
      <description>The result is same Ganesh</description>
      <pubDate>Tue, 20 Apr 2004 18:45:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-http-server-url-redirection/m-p/3253984#M887743</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-04-20T18:45:21Z</dc:date>
    </item>
  </channel>
</rss>

