问题描述:
已经使用composer进行了安装,然后配置了nginx,配置文件附在下面,nginx -t是没有问题的。但是登录服务器之后,并不能打开论坛页面,而是变成下载文件,会把index.php文件不停地下载下来,现在没有头绪,求助一下。
nginx配置文件:
server {
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location /api {
try_files $uri $uri/ /api.php?$query_string;
}
location /admin {
try_files $uri $uri/ /admin.php?$query_string;
}
location /flarum {
deny all;
return 404;
}
location ~ .php$ {
fastcgi_split_path_info .+.php(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}