You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by John Ford <jo...@drag-and-drop.com> on 2007/03/01 15:34:45 UTC

RE: [users@httpd] URL Mask - Newbie

Please can anyone help or point me in the right direction?

 

Many thanks,

 

John.

 

 

-----Original Message-----
From: John Ford [mailto:johnford@drag-and-drop.com] 
Sent: 27 February 2007 09:25
To: users@httpd.apache.org
Subject: [users@httpd] URL Mask - Newbie

 

Hi All,

 

At the moment my URL is something like this http://www.abc.co.uk?id1=123
<http://www.abc.co.uk/?id1=123&id2=4567> &id2=4567.

 

Is it at all possible to display on the domain (http://www.abc.co.uk
<http://www.abc.co.uk/> ) to the end user?

 

At the moment I am using a simple redirect from port 80 to 8080 and then
back again:

 

            <ifModule mod_rewrite.c>

            

                        RewriteEngine On

                        RewriteRule ^/(.*\.a4d)$ http://127.0.0.1:8080/$1
[P,L]

                        RewriteRule ^/4DCGI/(.*)$ http://127.0.0.1/$1
[P,L,nocase]

                        

                        ProxyPassReverse / http://127.0.0.1:8080

                        ProxyRequests Off

            </IfModule>

 

 

Any feedback would be extremely helpful,

 

Regards,

 

John.