> Is it possible to run a web.py script on a lighttpd server that > doesn't support the 'url.rewrite-once' module? > > The problem is that my lighttpd server is compiled without mod_rewrite > support and I cannot recompile it (although I can change lighttpd.conf > and restart it).
You can run it without mod_rewrite but it will have a funny URL. So instead of going to: /foo You will have to go to: /app/code.py/foo or wherever code.py is in your lighttpd's web directory. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
