3

I'm currently using nginx as a transparent proxy for apache. I would like to use nginx + fcgi(php) but need mod-rewrite support.

Is this possible or is there an alternative solution to my woes?

This is for only 1 site, would litespeed be an effective solution?

VisBits
  • 53
  • 1
  • 1
  • 5
  • Related question, (possible duplicate?): http://stackoverflow.com/questions/280488/how-do-i-convert-mod-rewrite-qsa-option-to-nginx-equivalent – Jesse Dhillon Jul 17 '10 at 20:24
  • Related question, with link to converter: http://stackoverflow.com/questions/5840497/convert-htaccess-to-nginx/11422788#11422788 – Koen. Jul 29 '12 at 00:08

1 Answers1

4

nginx has a rewrite module: http://wiki.nginx.org/NginxHttpRewriteModule

It doesn't support the same syntax as mod_rewrite, but has similar features.

Ian Gregory
  • 5,552
  • 1
  • 27
  • 41
  • Thanks, I saw that but I was hoping to get something for mod_rewrite. I went ahead and checked out litespeed, so far that's working fine. – VisBits Jul 19 '10 at 22:23