Hi somebody please help me out, I’m trying to setup a cakephp environment on a Centos server running Nginx with Fact CGI. I already have a wordpress site running on the server a
I got this working:
root DIR/app/webroot/; location / { index index.php index.html; rewrite ^/$ /index.php?url=/; if (!-e $request_filename) { rewrite ^(/.*)$ /index.php?url=$1 last; } }
and then of course handlers for php and stuff...