1
pfitseng 2014-06-24 16:45:52 +08:00 1
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$; if (!-f $document_root$fastcgi_script_name) { return 404; } fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; } |
2
jimmy2010 OP @pfitseng 试了一下,好像还是不行,只要是php jpg css js文件不存在的话,还是nginx默认的404.。
|
3
oott123 2014-06-25 00:59:20 +08:00 via Android 1
正常的写法不是这样的么?
try_files $uri $uri/ /index.php 然后去掉 rewrite 规则。 |