Home  >  Article  >  Operation and Maintenance  >  How to configure pathinfo mode in nginx

How to configure pathinfo mode in nginx

WBOY
WBOYforward
2023-05-12 19:52:041484browse

Reason

I haven’t used apache for a long time, and I gradually feel unfamiliar with apache, because a friend has a zendframework framework that was moved from apache to nginx and requires pathinfo mode support.

Online Search

So I started searching for articles related to nginx pathinfo. I thought it would be easy to configure it at first. After searching, I found that there are a lot of articles introducing nginx to enable pathinfo mode, and it seems that it is not difficult. But after several hours, it is still not configured properly. And the contents of a large number of articles are very similar, and they are basically reprinted.
I’m starting to get a little anxious! Because one day has passed and the preparation has not been completed.

Continue to search

No choice, continue searching. For the convenience of verification, I used a.com to download the thinkphp framework and set up an environment. And added the useraction.class.php controller class, added an app method in the class and output a line of text.
So, I started to constantly rewrite the nginx.conf file, restart nginx, and constantly refresh the a.com/index.php/user/app address. The result is either an address corruption prompt, 502, or access defind.
Another day passed, and I started to feel a little hesitant.

Finally persisted

Logically speaking, I feel that there should be a precedent for nginx thinkphp, but I didn’t search for the answer. Suddenly I feel so confused on the Internet, and I can't find an answer to a small question. Tonight, I tried to use nginx thinkphp keyword search again. After I clicked to more than ten pages, I found a code

Copy code The code is as follows:

location / { ​ 
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
}

location ~ \.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^ (. ?\.php)(/. )$") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param script_filename $document_root$real_script_name;
fastcgi_param script_name $real_script_name;
fastcgi_param path_info $path_info;
}


Save the changes, restart nginx, refresh the browser
An unexpected page appears

How to configure pathinfo mode in nginx

I was finally able to access it, and I finally breathed a sigh of relief. It was really not easy.
Post the nginx.conf code:

Copy the code The code is as follows:

user  www www;
worker_processes 2;
worker_cpu_affinity 01 10;
 
error_log  /data1/logs/nginx_error.log  crit;
 
pid        /usr/local/webserver/nginx/nginx.pid;
 
worker_rlimit_nofile 65535;
 
events
{
  use epoll;
  worker_connections 65535;
}
 
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 8m;
 
  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 128k;
 
  server
  {
    listen 80;
    server_name a.com;
    index index.php;
    root /data0/htdocs/a.com/www;
 
        location / {       
        if (!-e $request_filename) {
            rewrite  ^/(.*)$  /index.php/$1  last;
                    break;
            }
    }
    
    location ~ \.php {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        include fcgi.conf;
        set $real_script_name $fastcgi_script_name;
            if ($fastcgi_script_name ~ "^(. ?\.php)(/. )$") {
            set $real_script_name $1;
            set $path_info $2;
        }
        fastcgi_param script_filename $document_root$real_script_name;
        fastcgi_param script_name $real_script_name;
        fastcgi_param path_info $path_info;
    }
  }
}

The above is the detailed content of How to configure pathinfo mode in nginx. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete