Can I somehow build request forwarder type functionality in php. Problem is that previously i have some .net ashx handler which works as callbackhandler. Different client send differnt type of request like some send post request some send json and some send simple request withinfo in querystring. Now I want's to create a page which simple forward all the headers,querystring,form postelement, json to my ashx handler. is something like this possible
Asked
Active
Viewed 62 times
0
-
1You could do this with cUrl. see http://stackoverflow.com/questions/15886600/php-forward-post-variables-to-other-page – Timothy Groote Oct 16 '15 at 07:33
-
What about `mod_rewrite`? – Jan Oct 16 '15 at 07:42
-
not heard of mod_rewrite – Kamran Shahid Oct 16 '15 at 09:13