I am trying to understand how to get this location block to work as desired.
## TESTING MOD REWITE FROM APACHE...
location /beta9/projects/project/ {
try_files $uri $uri/ /beta9/projects/project/index.php?$args;
fastcgi_pass php_processes;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
How can I take the following URL
MASKED URL
http://localhost/beta9/projects/project/574
..and process it as...
RAW URL
http://localhost/beta9/projects/project/?project_id=574
As you can see, these url parameters do not get passed and the php page breaks.