Is there any apache module exists that intercepts all incoming GET/POST requests and allows business logic to be applied, then either let the requests pass through or redirect the requests to somewhere else?
It depends on how complicated the business logic needs to be. Something like mod_rewrite can toss or direct requests, but only on simple things like what it finds in the text of the URL. If you have complicated business logic, you may need an application server like Tomcat or JBoss. But then you'd need to know Java.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.