nginx-1.10
codeigniter-3.0
1. nginx.conf
伺服器{ root D:/wnmp/www;
#charset koi8-r;
位置/ {
#root D:/wnmp/www ;
#index index.html index.htm;
#error_page 404 /404.html;
# 將伺服器錯誤頁面重新導向至靜態頁面/50x.html
#
location = /50x.html {
root html;
}
# 將PHP 腳本傳遞至監聽127.0.0.1:9000 #root D:/登錄>; #fastcgi_pass 127.0.0.1:9000;
#fastcgi_index index.php;
ument_root$ fastcgi_script_name;
#include fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME D:/wnmp/www/index.php; -- 此處
fastcgi_split_path_info ^(.+.php)(.*)$; 包含fastcgi.conf;
2. index.php
解壓縮codeigniter,重新命名為ci,放在d:/wnmp下
把ci下的index.php移到網站根目錄d:/wnmp/ www下
index.php配置
$system_path = 'D:/wnmp/ci/system';
$application_folder = ' D:/wnmp/ ci/application';
ci/application/config/config.php
$config['base_url'] = 'http://localhost/';
參考:
Nginx下設定codeigniter框架方法
以上就介紹了nginx codeigniter配置,包含了面向的內容,希望對PHP教學有興趣的朋友有幫助。