Possible fastcgi misconfiguration
Forum URL
Arcade URL
The following URL should pass of as the Arcade URL above but throws up a 404
I'm rubbish at explaining it but this guy Kevin over at XenForo did a pretty good job
server {
listen 80 default_server;
server_name the-sps.org;
access_log off;
error_log /srv/www/the-sps.org/logs/error.log;
root /srv/www/the-sps.org/public_html;
index index.php index.html;
location / {
try_files $uri $uri/ /index.php?$uri&$args;
index index.php index.html;
}
location /internal_data/ {
internal;
}
location /library/ {
internal;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
1 Reply
Route handling seems to work with any other file extension just not .php
For example