<div dir="ltr">This is for symfony2 project.<div><br></div><div>location ~ /location1 {</div><div>  fastcgi things;</div><div>}</div><div><br></div><div><div>location ~ /location2 {</div><div>  fastcgi things;</div><div>}</div></div><div><br></div><div><div>location ~ /location3 {</div><div>  fastcgi things;</div><div>}</div></div><div><br></div><div><br></div><div>location / {</div><div>      index index.html;</div><div>}</div><div><br></div><div>Above examples how fit to symfony2 below. Mine is</div><div><br></div><div><br></div><div># dev</div><div>location ~ ^(app_dev|config)\.php$ {</div><div>      fastcgi things;</div><div>}</div><div><br></div><div><div># prod</div><div>location ~ ^app.php {</div><div>      fastcgi things;</div><div>}</div></div><div><br></div><div>location ~ \.php {</div><div>     deny all;</div><div>}</div><div><br></div><div>location / {</div><div>  try_files;</div><div>}</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 3, 2016 at 8:40 PM, Richard Stanway <span dir="ltr"><<a href="mailto:r1ch+nginx@teamliquid.net" target="_blank">r1ch+nginx@teamliquid.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Why not use the location directive? This is what it is designed for.<div><br></div><div><a href="http://nginx.org/en/docs/http/ngx_http_core_module.html#location" target="_blank">http://nginx.org/en/docs/http/<wbr>ngx_http_core_module.html#<wbr>location</a><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Mon, Oct 3, 2016 at 12:28 PM, Tseveendorj Ochirlantuu <span dir="ltr"><<a href="mailto:tseveendorj@gmail.com" target="_blank">tseveendorj@gmail.com</a>></span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr">Hello,<div><br></div><div>I need to configure some locations go to index.php rest go to index.html</div><div><br></div><div><br></div><div>if ($request_uri !~ ^/(location1|location2|locatio<wbr>n3)$ ) {</div><div>                  rewrite ^(.*) /index.html;</div><div>}</div><div><br></div><div>but how to else ?</div><div><br></div><div>if the request contains location1, location2, location3 goes to fastcgi_pass <a href="http://127.0.0.1:9000" target="_blank">127.0.0.1:9000</a>;</div><div>if not contain go to /index.html</div><div><br></div><div>regards,</div><div>tseveen</div></div>
<br></div></div>______________________________<wbr>_________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" target="_blank">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailm<wbr>an/listinfo/nginx</a><br></blockquote></div><br></div>
<br>______________________________<wbr>_________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/<wbr>mailman/listinfo/nginx</a><br></blockquote></div><br></div>