logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

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.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Apache reverse proxy to IIS6 having dynamic url problem?
Author
ollie



Joined: 27 Jul 2008
Posts: 5

PostPosted: Thu 26 Mar '09 9:37    Post subject: Apache reverse proxy to IIS6 having dynamic url problem? Reply with quote

hey all,

i am using apache as reverse proxy to IIS6, but having a bit of trouble when the url is dynamically retrieved.

http://kangaroocourtaustralia.com/

http://iwitness.x24hr.com/kangaroo_court_australia/index.php?showtopic=11707&view=getnewpost

why does nt apache allow getnewpost to return a new URL?

How can i get around this problem?
Back to top
ollie



Joined: 27 Jul 2008
Posts: 5

PostPosted: Mon 30 Mar '09 3:32    Post subject: Apache reverse proxy on win2003 having dynamic url problem? Reply with quote

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


Reply to topic   Topic: Apache reverse proxy to IIS6 having dynamic url problem? View previous topic :: View next topic
Post new topic   Forum Index -> Apache