<font color="#333399"><font>Thanks Edho,<br><br>I also use the official reference first-hand ;o)<br>From the example given on the <a href="http://wiki.nginx.org/HttpRewriteModule">Wiki page of the Rewrite module you quoted</a>, they replace 'last' by 'break' when rewrite rules put inside a location block...<br>

<br>
Isn't it a problem to put 'last' flags inside the location block? What is the 10-cycles-then-500-error referring to?</font></font><br clear="all"><font size="1"><span style="color:rgb(102,102,102)">---<br></span><b><span style="color:rgb(102,102,102)">B. R.</span></b><span style="color:rgb(102,102,102)"></span></font><br>



<div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Apr 21, 2012 at 22:17, Edho Arief <span dir="ltr"><<a href="mailto:edho@myconan.net" target="_blank">edho@myconan.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


2012/4/22 B.R. <<a href="mailto:reallfqq-nginx@yahoo.fr" target="_blank">reallfqq-nginx@yahoo.fr</a>>:<br>
<div>> Hi,<br>
><br>
> I'm using Nginx linked to PHP using fastcgi proxy (to the FPM module of PHP<br>
> core btw).<br>
><br>
> I am trying to use some rewrite rules, which apparently work since I get<br>
> redirected (HTTP answer 200), but the content is not passed through the PHP<br>
> handler...<br>
> I am returned the file for downloading which content is the raw PHP code!<br>
><br>
> I am using a configuration like the following:<br>
><br>
> location / {<br>
>  rewrite ^/dunno/([^\.^/]+)$ /index.php?q=$1 break;<br>
>  return 404;<br>
> }<br>
><br>
<br>
</div>break means the file is handled by current location block (location /<br>
{ }). The one<br>
you want is last.<br>
<br>
reference: <a href="http://nginx.org/r/rewrite" target="_blank">http://nginx.org/r/rewrite</a><br>
<br>
_______________________________________________<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" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a></blockquote></div><br></div>