Welcome! Log In Create A New Profile

Advanced

Location Rewrite Issue

Randy Johnson
August 16, 2019 01:04AM
Here is the locations part of my nginx host file:
server {
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;

location / {
try_files $uri $uri/ @extensionless-php;
}

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}

location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}

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;
}

In addition it does not load the /blog page. It throws a 404.

I am not quite sure what I need to do to get it working.

Thank You,
Randy
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Location Rewrite Issue

Randy Johnson August 16, 2019 01:04AM

RE: Location Rewrite Issue

Reinis Rozitis August 16, 2019 05:16AM

Re: Location Rewrite Issue

Randy Johnson August 16, 2019 01:02PM

RE: Location Rewrite Issue

Reinis Rozitis August 17, 2019 04:44PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 273
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready