thinkphp 3.2.3在nginx+php下的url重寫配置經驗

來源:互聯網
上載者:User

標籤:add   section   url   nginx伺服器   配置   重啟   enable   hash   span   

環境:centos7.2+lnmp1.3(nginx+php7.0+mysql5.5)

進入伺服器配置路徑:cd /usr/local/nginx/conf/nginx.conf 
修改nginx.conf檔案vim nginx.conf,原來的檔案內容不變,在最後加上我們需要的對thinkphpurl模式的解析 
修改後的nginx.conf檔案如下:

user  www www;worker_processes auto;error_log  /home/wwwlogs/nginx_error.log  crit;pid        /usr/local/nginx/logs/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process.worker_rlimit_nofile 51200;events    {        use epoll;        worker_connections 51200;        multi_accept on;    }http    {        include       mime.types;        default_type  application/octet-stream;        server_names_hash_bucket_size 128;        client_header_buffer_size 32k;        large_client_header_buffers 4 32k;        client_max_body_size 50m;        sendfile   on;        tcp_nopush on;        keepalive_timeout 60;        tcp_nodelay on;        fastcgi_connect_timeout 300;        fastcgi_send_timeout 300;        fastcgi_read_timeout 300;        fastcgi_buffer_size 64k;        fastcgi_buffers 4 64k;        fastcgi_busy_buffers_size 128k;        fastcgi_temp_file_write_size 256k;        gzip on;        gzip_min_length  1k;        gzip_buffers     4 16k;        gzip_http_version 1.1;        gzip_comp_level 2;        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;        gzip_vary on;        gzip_proxied   expired no-cache no-store private auth;        gzip_disable   "MSIE [1-6]\.";        #limit_conn_zone $binary_remote_addr zone=perip:10m;        ##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.        server_tokens off;        access_log off;server    {        listen 80 default_server;        #listen [::]:80 default_server ipv6only=on;        server_name www.lnmp.org;        index index.html index.htm index.php;        root  /home/wwwroot/default;        #error_page   404   /404.html;        include enable-php.conf;        location /nginx_status        {            stub_status on;            access_log   off;        }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {            expires      30d;        }        location ~ .*\.(js|css)?$        {            expires      12h;        }        location ~ /\.        {            deny all;        }        #應用部署在子目錄sixchat下,如果部署在根目錄下,需要去掉/sixchat        #ThnkPHP URL_MODEL=>2 rewrite 省略index.php        location /sixchat/ {            if (!-e $request_filename) {                rewrite ^/sixchat/(.*)$ /sixchat/index.php?s=$1 last;                break;            }           }           #        access_log  /home/wwwlogs/access.log;    }include vhost/*.conf;}

最後,重啟nginx伺服器即可 service nginx restart

thinkphp 3.2.3在nginx+php下的url重寫配置經驗

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.