ChrisRChamberlain
Programmer
Hi all
Apache novice so please be gentle.
Would like to effectively 'share' port 80 between 2 servers on a LAN.
Windows server 1 is running WAMP and port 80 is forwarded to server 1
In \path\httpd-vhosts.conf there is
and all works correctly.
Would like to use mod_rewrite to redirect 'yoursite.com' to another WinXP Pro box, this time running IIS, to C:\Inetpub\
If possible, ideas please?
TIA
PDFcommander.com
motrac.co.uk
Apache novice so please be gentle.
Would like to effectively 'share' port 80 between 2 servers on a LAN.
Windows server 1 is running WAMP and port 80 is forwarded to server 1
In \path\httpd-vhosts.conf there is
Code:
<VirtualHost *:80>
ServerName [URL unfurl="true"]www.mysite.net[/URL]
ServerAlias mysite.net mysite
DocumentRoot C:/wamp/[URL unfurl="true"]www/mysite[/URL]
ErrorLog C:/wamp/[URL unfurl="true"]www/mysite/logs/error.log[/URL]
CustomLog C:/wamp/[URL unfurl="true"]www/mysite/logs/access.log[/URL] common
</VirtualHost>
<VirtualHost *:80>
ServerName [URL unfurl="true"]www.yoursite.com[/URL]
ServerAlias yoursite.com yoursite
DocumentRoot C:/wamp/[URL unfurl="true"]www/yoursite[/URL]
ErrorLog C:/wamp/[URL unfurl="true"]www/yoursite/logs/error.log[/URL]
CustomLog C:/wamp/[URL unfurl="true"]www/yoursite/logs/access.log[/URL] common
</VirtualHost>
Would like to use mod_rewrite to redirect 'yoursite.com' to another WinXP Pro box, this time running IIS, to C:\Inetpub\
If possible, ideas please?
TIA
FAQ184-2483
Chris PDFcommander.com
motrac.co.uk