1. 程式人生 > >將Tp3.2的專案轉移到nginx伺服器下,訪問報錯404

將Tp3.2的專案轉移到nginx伺服器下,訪問報錯404

我的專案中config.php中 'URL_MODEL'=>3,

在專案的配置檔案***.conf中在 root 根目錄路徑   所在行下新增:

if (!-e $request_filename) {
            rewrite ^(.*)$ /index.php?s=$1 last;    #注(目的是將/後面的路徑前加上index.php)
            break;
}

如下圖:
:

然後重啟nginx:

[[email protected] ~]# /etc/init.d/nginx reload
Reload service nginx...  done

在訪問就OK了