We've got a pretty complicated set of URL's that go all over the
place, but at the end we want to be able to match a regex to the
WSGIScript. The regex is simple it's just some locales: "en", "de"
etc. So something like:
WSGIScriptAlias /([a-z]){2}/ /home/django/django.wsgi
But script alias won't accept a regex, so we are currently using a
WSGIScriptAliasMatch:
WSGIScriptAliasMatch /([a-z]){2}/ /home/django/django.wsgi
But I read the docs on this and it said ask the mailing list. Hence,
is this a valid use case, or is there a better plan?
Thanks
--
You received this message because you are subscribed to the Google Groups
"modwsgi" 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/modwsgi?hl=en.