»» » MTDb安裝教程說明

MTDb安裝教程說明 - Nginx偽靜態規則

來源 : 2019-04-18技術文檔安裝教程未知 0

server {
   listen 80 default_server;
   server_name default;
   root /domains/site.com/public

   index index.html index.htm index.php;

   charset utf-8;

   location / {
       try_files $uri $uri/ /index.php?$query_string;
   }

   location = /favicon.ico { access_log off; log_not_found off; }
   location = /robots.txt  { access_log off; log_not_found off; }

   access_log off;
   error_log  /var/log/nginx/default-error.log error;

   error_page 404 /index.php;

   location ~ \.php$ {
       fastcgi_split_path_info ^(.+\.php)(/.+)$;
       fastcgi_pass unix:/var/run/php5-fpm.sock;
       fastcgi_index index.php;
       include fastcgi_params;
   }

   location ~ /\.ht {
       deny all;
   }
}

   注意:Nginx必須使用/public作為root目錄.



    寶塔隻需要在偽靜態頁麵寫入

    location / {

        try_files $uri $uri/ /index.php?$query_string;

    }


本站文章除特別說明外,全部來自於本站用戶投稿或者網站原創,轉載請務必注明出處.
如文章部分內容出錯,請【報告】,感謝.

 
02019-04-18 01:28:00
提示!需要先登錄 才可以評論. 還沒有賬戶? 您可以馬上 創建免費賬戶