Web Server/Apache/Nginx & 技术 22 Sep 2008 03:09 pm
nginx下j_space人才系统rewrite
系统设置为“完整格式” 如: http://www.wjob.com.cn/index.php/index.html
[code]
location ~ .*\.php?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location ~* ^/index.php/
{
rewrite ^/index.php/(.*) /index.php?$1 break;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
[/code]