I have the nginx.conf to fuelphp
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ index.php?/$1 last; }
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
include fastcgi.conf;
include /etc/nginx/fastcgi_params;
}
but this not working with testfphp/public/welcome/hello
the nginx says: file not found
Where is the error
Thank you.
if (!-e $request_filename) {<br style="box-sizing: border-box;">
rewrite ^(.*)$ index.php?/$1 last; }
which should be the equivalent into .htaccess
for apache where it work
or ngnix has a bug ?
It looks like you're new here. If you want to get involved, click one of these buttons!