kohana官方手册中的规则有点小问题,这是我测试通过的规则
红色的地方是特别注意的地方,要求nginx版本> 0.7.31
debian 5 现在的Nginx才在0.6.x 之前试了很久都出错
现在使用
Dotdeb的 php5.3 php5-fpm php5-cgi
debian 6 中的 nginx 0.7.67
server {
server_name golebo.com;
root /home/xxxx/www/golebo.com;
location / {
index index.html index.htm index.php default.php;
try_files $uri $uri/ /index.php$uri?$args;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ ^(.+.php)(.*)$ {
fastcgi_split_path_info ^(.+.php)(.*)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
include fastcgi_params;
}
}
原创文章,转载请注明: 转载自贝壳博客
本文链接地址: Kohana v3 Nginx rewrite 规则