Let Nginx support PathInfo routing

Source: Internet
Author: User

Nginx servers do not support PathInfo by default, and "/index.php/home/index/index" cannot be supported in programs that require pathinfo support, such as thinkphp.

Here I provide a more concise way of writing (only need to change 2 lines of code)

#  Typical configuration    location ~ \.php$ {       root            html;       fastcgi_pass    127.0.0.1:9000;       fastcgi_index  index.php;        fastcgi_param  SCRIPT_FILENAME   $DOCUMENT _root$fastcgi_ script_name;       include        fastcgi _params;  }      #  modified 1th, 6 line, support pathinfo      location ~  \.php (. *) $ { #  matching. PHP pathinfo part        root html;        fastcgi_pass   127.0.0.1:9000;        fastcgi_index  index.php;       fastcgi_param   Script_filename   $DOCUMENT _root$fastcgi_script_name;       fastcgi_param path_ info $1; #  pathinfo part to path_info variable        include         fastcgi_params;  }  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.