Forum Moderators: phranque
Is there a way to do this without reverse proxy?
If not, How can I implement some sort of module to handle what the browser receives?
Thanks,
James
It may help to show us what you've got so far in terms of the rewrite so that we have a more concrete idea of what modifications can be done.
When n2htest comes in on 80, I send it to a new child process but the returned URL is 222.222.22.2:1026/
Here's an example of my mod_rewrite code. Hope the help you help me.
Thanks
NameVirtualHost 222.222.22.2:80
<Virtualhost 222.222.22.2:80>
RewriteEngine on
RewriteLog logs/rewrite.log
RewriteLogLevel 9
RewriteCond %{HTTP_HOST} ^n2htest [NC]
RewriteRule ^/(.*)$ [222.222.22.3:1026...] [R,L]
RewriteCond %{HTTP_HOST} ^a0test [NC]
RewriteRule ^/(.*)$ [222.222.22.3:1025...] [R,L]
</VirtualHost>