簡單介紹Nginx tp3.2.3 404問題解決方案

安全劍客發表於2021-01-07
這篇文章主要介紹了Nginx tp3.2.3 404問題解決方案,文中透過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

最近我把Apache給換成nginx,當我把tp專案搬過去執行的時候發現404 錯誤 ,原來是因為nginx不支援 pathinfo 模式,需要自己配置,下面我配置在server配置裡面:

location / {
    #root html
    index index.html index.htm index.php ;
    if (!-e $request_filename) { 
    rewrite ^/test/tp/(.*)$ /test/tp/index.php/$1 last;
    break; 
}     
location ~ \.php {  #注意這裡一定要一樣,不能有$
  set $script $uri;
  set $path_info "/";
  if ($uri ~ "^(.+\.php)(/.+)") {
    set $script   $1;
    set $path_info $2;
  }
  fastcgi_pass 127.0.0.1:9000;
  fastcgi_index index.php?IF_REWRITE=1;
  include fastcgi_params;
  fastcgi_param PATH_INFO $path_info;
  fastcgi_param SCRIPT_FILENAME $document_root/$script;
  fastcgi_param SCRIPT_NAME $script;
}

儲存配置之後,重啟 nginx ,配置成功,直接支援類似於 /Index.html 這樣的偽靜態模式。

以上就是本文的全部內容,希望對大家的學習有所幫助。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2748056/,如需轉載,請註明出處,否則將追究法律責任。

相關文章