Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Apache reverse proxy to IIS6 having dynamic url problem? |
|
Author |
|
ollie
Joined: 27 Jul 2008 Posts: 5
|
|
Back to top |
|
ollie
Joined: 27 Jul 2008 Posts: 5
|
Posted: Mon 30 Mar '09 3:32 Post subject: Apache reverse proxy on win2003 having dynamic url problem? |
|
|
i have set up apache here
Quote: | kangaroocourtaustralia.com/ |
But for some reason a couple of URLs gives me a white page
Quote: | iwitness.x24hr.com/kangaroo_court_australia/index.php?showtopic=11707[COLOR="Red"]&view=getnewpost[/COLOR]
iwitness.x24hr.com/kangaroo_court_australia/index.php?showtopic=11707[COLOR="Red"]&view=old[/COLOR]
iwitness.x24hr.com/kangaroo_court_australia/index.php?showtopic=11707[COLOR="Red"]&view=new[/COLOR] |
Is this a cache thing?? if so can i flush the cache? and How?
I set up my virual host like so, help please
Code: | <VirtualHost *:80>
ServerName iwitness.x24hr.com
Options FollowSymLinks Indexes
DirectoryIndex index.html index.htm index.php
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/kangaroocourt"
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
proxyPass / http://localhost/kangaroocourt/
# proxyPassreverse / http://localhost/kangaroocourt/
<Location />
ProxyPassReverse /
</Location>
</VirtualHost> |
|
|
Back to top |
|
|
|
|
|
|