Thank you. That was indeed the issue. Now I can see the individual blog entries at /blog/slug-of-blog
but /blog and /blog/ urls are both throwing a 404. Is that an easy fix? -Randy On Fri, Aug 16, 2019 at 5:15 AM Reinis Rozitis <[email protected]> wrote: > > I tried adding the following line in there in a couple different places > but all it does is download the php file. > > > > location /blog { > > rewrite ^/blog/([A-Za-z0-9-]+)/?$ /blog-article.php?slug=$1 break; > > } > > Try to switch from 'break' to 'last'. > > By using 'break' it means that nginx stops the rewrite and also doesn't > search for any other location so the request doesn't land in the 'location > ~ \.php$' and is never processed by php. > > rr > > _______________________________________________ > nginx mailing list > [email protected] > http://mailman.nginx.org/mailman/listinfo/nginx >
_______________________________________________ nginx mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx
