Nginx tp3.2.3 404 problem solution

Nginx tp3.2.3 404 problem solution

Recently I changed Apache to nginx. When I moved the TP project to run, I found a 404 error. It turned out that this was because nginx did not support pathinfo mode and needed to be configured by myself.

Below I configure

In the server configuration

location / {
    #root html
    index index.html index.htm index.php ;
    if (!-e $request_filename) { 
    rewrite ^/test/tp/(.*)$ /test/tp/index.php/$1 last;
    break; 
}     
location ~ \.php { #Note that this must be the same, no $
  set $script $uri;
  set $path_info "/";
  if ($uri ~ "^(.+\.php)(/.+)") {
    set $script $1;
    set $path_info $2;
  }
  fastcgi_pass 127.0.0.1:9000;
  fastcgi_index index.php?IF_REWRITE=1;
  include fastcgi_params;
  fastcgi_param PATH_INFO $path_info;
  fastcgi_param SCRIPT_FILENAME $document_root/$script;
  fastcgi_param SCRIPT_NAME $script;
}

After saving the configuration, restart nginx and the configuration is successful

Directly supports pseudo-static mode like /Index.html

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the problem of refreshing page 404 using nginx under vue
  • Several ways to implement 404 pages in Nginx (three types)
  • The nginx reverse proxy service causes a 404 error when accessing resources due to an error in the configuration file
  • How to configure NGINX server to redirect 404 error page
  • Solution to the 404 issue when directly entering the routing path after configuring the React project URL in Nginx
  • Summary of Nginx's method of implementing 404 pages
  • Solution to 404 error in PHP (FastCGI) under Nginx alias
  • A murder caused by an equal sign (talking about the correct 404 configuration of Nginx)
  • The correct way to define a 404 page and return a 404 status code in Nginx
  • How to configure 404 error page under NGINX

<<:  Front-end state management (Part 2)

>>:  HTML table markup tutorial (18): table header

Recommend

Detailed steps for using AES.js in Vue

Use of AES encryption Data transmission encryptio...

Display flex arrangement in CSS (layout tool)

Regarding display: flex layout, some people have ...

SQL merge operation of query results of tables with different columns

To query two different tables, you need to merge ...

Steps to restore code from a Docker container image

Sometimes the code is lost and you need to recove...

HTML is the central foundation for the development of WEB standards

HTML-centric front-end development is almost what ...

Hide HTML elements through display or visibility

Sometimes we need to control whether HTML elements...

Implementation of ssh non-secret communication in linux

What is ssh Administrators can log in remotely to...

XHTML Tutorial: XHTML Basics for Beginners

<br />This site’s original content, please i...

User needs lead to marketing-oriented design

<br />For each of our topics, the team will ...

Analysis of the cause of docker error Exited (1) 4 minutes ago

Docker error 1. Check the cause docker logs nexus...

How to install and configure the Docker Compose orchestration tool in Docker.v19

1. Introduction to Compose Compose is a tool for ...

Briefly understand the MYSQL database optimization stage

introduction Have you ever encountered a situatio...

Steps to use autoconf to generate Makefile and compile the project

Preface Under Linux, compilation and linking requ...