從網路上找了個php程序,看著像是基於thinkPHP 3.1開發的,然後把自己的阿里雲服務安裝上了php環境,因為之前裝的是nginx所以環境是php7.0 nginx。但配置好後提示如下:
無法載入模組:install.php
錯誤位置
#FILE: /usr/local/nginx/php/thinkphp/Common/functions.php LINE: 112
但是一個簡單的phpinfo頁面可以顯示,請問這是什麼問題,下面附上我的nginx設定
#server {
listen 80;
server_name shop.luger.me;
index index.php index.html;
root /usr/local/nginx/php;
location /{
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/ last;
break;
}
}
#location ~ \.php$ {
location ~ ^(.+\.php)(.*)$ {
root /usr/local/nginx/php;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include fastcgi_params;
}
}
請問這是什麼問題。