I'm struggling with creating a simple rewrite url on nginx.
My configuration looks like this:
location /foo/bar {
rewrite ^/(.+)$ /index.php?p=$1 break;
}
E.g. /foo/bar/baz
should become /foo/bar/index.php?p=baz
(internally of course)
However, everything accessed through /foo/bar/
triggers a download of an index.php located at the root. How do I get this to work ?
I've also tried using try_files
but can't figure out how to exclude the /foo/bar/
path from $uri
.
Change
to
Based on http://wiki.nginx.org/HttpRewriteModule#rewrite,
[Edit] Using break will stay inside the same location block. In your case, there is no other rules inside that location block. So by default, nginx will serve that as a file request.
The PHP file isn't interpreted and treated as a regular file. You will need to setup a CGI server like FPM and pass the connection to those processes.
See http://wiki.nginx.org/Configuration for details
UPDATE
I'm not sure why your example breaks. But my guess is you'll need to change the
rewrite
into atry_files
.