阿里云服务器上使用的oneinstack环境
复制 少年志 http://www.thinkphp.cn/topic/54906.html
server {
listen 80;
server_name mydomai.com www.mydomai.com;
access_log /app/logs/nginx/mydomain_access.log;
error_log /app/logs/nginx/mydomain_error.log;
root /data/wwwroot/djarticle/public;
location ~ / {
if ( !-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
}
location ~ [^/]\.php(/|$) {
#location ~ .+\.php($|/) {
#try_files $uri =404;
#fastcgi_pass remote_php_ip:9000;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param sc
fastcgi_param sc
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
expires off;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires off;
access_log off;
}
location ~ /\.ht {
deny all;
}
}
在网站运行的时候,
直接提示
File not found.
求助如何解决!
最佳答案