
然后直接访问域名就没有问题

模块不存在:index.php用lnmp遇见安装包安装也不会有问题,这个是用的yum自己配置的
nginx配置文件:
location / {
root /data/www/public;
index index.html index.php;
if ( -f $request_filename) {
break;
}
if ( !-e $request_filename) {
rewrite ^(.*)$ /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 127.0.0.1:9000;
fastcgi_index index.php?IF_REWRITE=1;
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME $root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $script;
include fastcgi_params;
}
这是百度来的,找了很多,一直都是 模块不存在:index.php 的问题不知道哪里出错了。。
最佳答案
