Change this:
try_files \$uri \$uri/ /index.php?\$query_string;
To this:
try_files $uri $uri/ /index.php?$query_string;
Remove those slashes before each $uri and $query and you should be good to go.
better
try_files $uri $uri/ /index.php$is_args$args;
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community