Re: [users@httpd] How to Proxy Requests

2013-08-26 Thread jv r
You might use REQUEST_METHOD to chech the http method and other server variables and the [P] flag in .htaccess. If you don't use .htacces file, in the .conf file you might use ProxyPass, but maybe is better for you, use a RewriteRule with [P] for more flexibility. 2013/8/25 Akash Jain > We do

Re: [users@httpd] How to Proxy Requests

2013-08-25 Thread Akash Jain
We don't use htaccess file. Will rewriterules work for POST requests? On 25 Aug 2013 16:00, "Aarti Sawant" wrote: You can use htaccess to serve this purpose, use Rewrite rule for redirecting from one url to another url. Thanks, Aarti Sawant On Sun, Aug 25, 2013 at 10:47 AM, Akash Jain wro

Re: [users@httpd] How to Proxy Requests

2013-08-25 Thread Aarti Sawant
You can use htaccess to serve this purpose, use Rewrite rule for redirecting from one url to another url. Thanks, Aarti Sawant On Sun, Aug 25, 2013 at 10:47 AM, Akash Jain wrote: > Hi, > > Users of my website hit a AJAX POST call for validation of User ID. > > The URL formed is > http://dummy.c

[users@httpd] How to Proxy Requests

2013-08-24 Thread Akash Jain
Hi, Users of my website hit a AJAX POST call for validation of User ID. The URL formed is http://dummy.com//handler/validateId?userid= ** RandomNumber is any random number based on the instance the request gets hit. Now, at webserver level, I want that request to be processed by another URL : h