ahmad
7/6/2017 - 4:52 AM

slim nginx rewrite

slim nginx rewrite

server {
	listen 80;

	root /var/www/slim;
	index index.html index.htm index.php;

	# Make site accessible from http://localhost/
	#
	server_name test.com;
    if (!-f $request_filename) {
        rewrite ^(.*)$ /index.php last;
    }

    location /data/ {
        try_files $uri $uri/ /data/index.php?$args;
    }

	location ~ \.php$ {
		fastcgi_split_path_info ^(.+\.php)(/.+)$;
	#	# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
	#
	#	# With php5-cgi alone:
		fastcgi_pass 127.0.0.1:9000;
	#	# With php5-fpm:
	#	fastcgi_pass unix:/var/run/php5-fpm.sock;
	#	fastcgi_index index.php;
		include fastcgi_params;
	}

}