--- Krist van Besien <krist.vanbesien@xxxxxxxxx> wrote: > On Feb 12, 2008 8:48 PM, Charles Li > <cli168@xxxxxxxxx> wrote: > > I am trying to use rewrite to direct selected > traffic > > from the HTTP server (oracle iAS) to a oc4j > container > > on the same server. > > I would like to hide the port number. Is it > possible? > > > > RewriteEngine on > > RewriteCond %{HTTP_HOST} ^.*storePRE.*$ [NC] > > RewriteRule ^/$ http://server:8888/basic.jsp > [R] > > > > When users access http://storePre.com, they would > be > > directed to http://server:8888/basic.jsp. > > I would like it to be http://server/basic.jsp. Is > it > > possible? > > It is possible. You need to proxy in stead of > redirect. Use [P] in > stead of [R], and have mod_proxy enabled. > > Krist > > -- > krist.vanbesien@xxxxxxxxx > krist@xxxxxxxxxxxxx > Bremgarten b. Bern, Switzerland > -- > A: It reverses the normal flow of conversation. > Q: What's wrong with top-posting? > A: Top-posting. > Q: What's the biggest scourge on plain text email > discussions? > > --------------------------------------------------------------------- > The official User-To-User support forum of the > Apache HTTP Server Project. > See <URL:http://httpd.apache.org/userslist.html> for > more info. > To unsubscribe, e-mail: > users-unsubscribe@xxxxxxxxxxxxxxxx > " from the digest: > users-digest-unsubscribe@xxxxxxxxxxxxxxxx > For additional commands, e-mail: > users-help@xxxxxxxxxxxxxxxx > > So, all I have to change is the R to a P? Is this correct: RewriteEngine on RewriteCond %{HTTP_HOST} ^.*storePRE.*$ [NC] RewriteRule ^/$ http://server:8888/basic.jsp [P] Would the user see http://server/basic.jsp, when redirected, without the port number? Thanks. ____________________________________________________________________________________ Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx