On 2013-02-22 23:05, Valentin V. Bartenev wrote:
IMHO,

   location ~ ^(?<script_name>.+\.php)(?<path_info>/.*)?$ {

looks better.

In order to put yet another iteration into the game, I prefer the script_name part to be non-greedy

    location ~ ^(?<script_name>.+?\.php)(?<path_info>/.*)?$ {

Of course it still depends on someone's preference what to match in case of

    /foo.php/bar.php/quux

-cs

_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to