English 中文(简体)
Regex Proxy Server
原标题:

I control access via a proxy server and run some regex on every request. For prototype I have used curl, regex and php. Obviously this will not put up with any serious load. Can anyone suggest and proxy servers that would be suitable?

问题回答

Why do need to run some regexp? For rewriting the request url? In that case, Apache can do it, it has a proxy module and a (regexp based) rewriting engine. I used it, once, so i m sure those functions can be combined.

http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html

But Squid is designed to be a proxy server (not a web server) and wil most probably be able to do some URL rewriting as well.





相关问题
Using SimplePie with CodeIgniter and XAMPP

I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer. I am trying to make use of SimplePie. I followed all the instructions I could find: a copy of simplepie.inc is in my applications/...

Multiple Sites with common files

I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, I currently duplicate the files each time I create a new site and upload different css and images. What ...

http server validation

I finish a litle http server, writing from scratch. I would like to be sure that my imlementation is conforme to the HTTP specifications. W3C give us tools for HTML/XML conformance, but i see nothing ...

热门标签