httpd

Reverse proxy problem with apache

I am trying to do reverse proxy with configuration # directive ifModule mod_proxy.c ProxyRequests On directive Proxy * Order deny,allow # Deny from all Allow from all directive /Proxy ProxyPass / http://localhost:8080/mysocial ProxyPassReverse / http://localhost:8080/mysocial ProxyVia On directive IfModule mo...

apache, allow filenames with '?'

I want to make a static copy of a site, retaining existing URLs. The problem is that the URLs looked like: http://mysite/index.php?id=XXX and Apache does not want to find the file "index.php?id=XXX". Instead, it interprets the request as the file "index.php" with the query "id=XXX". How can I ask Apache to stop handling the question m...