久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      記錄Nginx怎么配置TP5.1及所遇問題

      下面thinkphp框架教程欄目將給大家介紹關(guān)于Nginx怎么配置ThinkPHP5.1以及遇到的問題的解決方法,希望對(duì)需要的朋友有所幫助!

      1.Nginx用戶對(duì)項(xiàng)目目錄的訪問權(quán)限

      cd /usr/local/nginx/html/setfacl -m u:nginx:rwx -R ../html

      2.確保訪問路徑是正確的,最好在本地測(cè)過訪問URL路徑能正確訪問到文件

      記錄Nginx怎么配置TP5.1及所遇問題

      3.nginx支持tp的pathinfo

      vi /usr/local/nginx/conf/nginx.conf

      nginx.conf配置文件找到位置修改內(nèi)容為

       location ~ .php$ {             #root           html;             #這段路徑指向是必須加的            root       /usr/local/nginx/html/zh/public;            fastcgi_index index.php;            fastcgi_pass   127.0.0.1:9000;            #fastcgi_pass   unix:/usr/local/php/var/run/www.sock;            fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;             fastcgi_split_path_info ^(.+.php)(.*)$;     #增加這一句             fastcgi_param PATH_INFO $fastcgi_path_info;    #增加這一句            include        fastcgi_params;         }

      4.nginx rewrite重寫規(guī)則

      vi /usr/local/nginx/conf/nginx.conf

      nginx.conf配置文件找到位置修改內(nèi)容為

      server {         listen       80;         server_name  www.liuyuanshan.top;          #charset koi8-r;          #access_log  logs/host.access.log  main;          location / {             #root   html;             # 設(shè)置www.liuyuanshan.top默認(rèn)訪問路徑為/usr/local/nginx/html/zh/public/              root    /usr/local/nginx/html/zh/public/;             index index.php  index.html index.htm;                  if (!-e $request_filename) {                         rewrite  ^(.*)$  /index.php?s=/$1  last;                 }         }

      推薦學(xué)習(xí):《最新的10個(gè)thinkphp視頻教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)