location / {
index index.html index.htm index.php;
root /home/www/php;
try_files $uri $uri/ =404;
}
location ~.*\.php$ {
root /home/www/php;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
---------------------------以上是现在的配置----------------------
#这段是网上说开启的
location /App/ { #App是我的项目目录
index index.php;
if (!-e $request_filename) {
rewrite ^/App/(.*)$ /App/index.php/$1 last;
break;
}
}
location ~ .+\.php($|/) {
set $script $uri;
set $path_info "/";
if ($uri ~ "^(.+\.php)(/.+)") {
set $script $1;
set $path_info $2;
}
fastcgi_pass fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php?IF_REWRITE=1;
include /APMServ/nginx/conf/fastcgi_params;
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME $document_root/$script;
fastcgi_param SCRIPT_NAME $script;
}
#这段是网上说开启的
现在有几个Location,不知道哪些不要。
index index.html index.htm index.php;
root /home/www/php;
try_files $uri $uri/ =404;
}
location ~.*\.php$ {
root /home/www/php;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
---------------------------以上是现在的配置----------------------
#这段是网上说开启的
location /App/ { #App是我的项目目录
index index.php;
if (!-e $request_filename) {
rewrite ^/App/(.*)$ /App/index.php/$1 last;
break;
}
}
location ~ .+\.php($|/) {
set $script $uri;
set $path_info "/";
if ($uri ~ "^(.+\.php)(/.+)") {
set $script $1;
set $path_info $2;
}
fastcgi_pass fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php?IF_REWRITE=1;
include /APMServ/nginx/conf/fastcgi_params;
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME $document_root/$script;
fastcgi_param SCRIPT_NAME $script;
}
#这段是网上说开启的
现在有几个Location,不知道哪些不要。
