ThinkPHP5 + nginx配置(index.php無法訪問404)

weixin_34365417發表於2018-08-24

下載ThinkPHP5後,在nginx下預設無法訪問index.php,
假如檔案系統路徑是/home/www/
建立專案php5後歡迎頁訪問路徑是:
http://xxxxx/home/www/php5/public/
上面連結可以訪問,但是index.php以及包含引數的請求均會訪問失敗,返回404錯誤.

配置php.ini

vim /usr/local/php/lib/php.ini (根據你的安裝路徑xxx/php/lib/php.ini )

php.ini中的配置引數cgi.fix_pathinfo = 1

2963877-2c7f79271c97bc35.png
位置

接下來進入nginx的配置:

1 找到server裡的location ~ .php$ { ...}

server { 
.
location ~ \.php$ { ...}
.
}

修改為:

set  $root /home/www/php5/public;

location ~ \.php($|/) {                                                                    
           root           $root;                                                           
            fastcgi_pass   127.0.0.1:9000;                                                 
            fastcgi_index  index.php;                                                      
       
           fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;                                 
           fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;             

          fastcgi_param  PATH_INFO  $fastcgi_path_info;                                    
          fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;   
          include        fastcgi_params;                                              
}      

修改解釋:

1: 宣告變數$root, 設定根目錄:/home/www/php5/public (直接指向public)

2: 修改方法
修改前:
location ~ \.php$ : 只允許.php結尾的請求.所以帶引數會失敗
修改後:
location ~ \.php($|/) : 允許.php及帶引數的請求

隱藏index.php:

也是找到server裡的location / { { ...}
修改前:

location / {                                                                       
            root   $root;                                                                  
            index  index.html index.php index.htm;                                                     
} 

修改後:(新增try_files uri/ /index.php?$query_string; )

location / {                                                                       
            root   $root;                                                                  
            index  index.html index.php index.htm;                                         
            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=/$1  last;
                break;
            }                                            
} 

配置後出現訪問資原始檔報錯模組不存在錯誤,這裡只需新增對靜態資原始檔的特殊處理即可:

location ~ .*\.(css|js|gif|jpg|jpeg|png|bmp|swf)$ {
     root         $root;
     expires      30d;
 }

相關文章