doc: made clarification about ngx.exec() requested by Dayo Akanji.

This commit is contained in:
Yichun Zhang (agentzh) 2014-09-16 12:42:26 -07:00
Родитель e9139a954b
Коммит 14fbf40317
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -4132,7 +4132,7 @@ ngx.exec('/some-location', 'a=3&b=5&c=6');
ngx.exec('/some-location?a=3&b=5', 'c=6');
```
Named locations are also supported, but query strings are ignored. For example,
Named locations are also supported (but the second `args` argument is currently ignored). For example,
```nginx

Просмотреть файл

@ -3422,7 +3422,7 @@ Does an internal redirect to <code>uri</code> with <code>args</code>.
ngx.exec('/some-location?a=3&b=5', 'c=6');
</geshi>
Named locations are also supported, but query strings are ignored. For example,
Named locations are also supported (but the second <code>args</code> argument is currently ignored). For example,
<geshi lang="nginx">
location /foo {