SoFunction
Updated on 2025-04-04

Solve the problem of modifying configuration access under nginx by tp5

First: Modify nginx configuration

Note: All configurations are based on lnmp1.4 one-click installation environment

According to your nginx configuration, find the correct one and modify the fastcgi_param parameter

Modify the default path to the previous level of your project root directory, and note that it is the previous level! ! !

3、lnmp nginx reload

lnmp nginx restart

Second: Execute the service nginx restart command to restart nginx, and find a 404 error on the web page. You need to configure a pseudo-static method to add it in /usr/local/nginx/conf/ (depending on the actual situation):

location ~ .*\.(php|php5)?$
  {
    #fastcgi_pass unix:/tmp/;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index ;
    include ;
  }
  location / {
    if (!-e $request_filename) {
    rewrite ^(.*)$ /?s=/$1 last;
    break;
    }
  }

The code is placed in server{}

third:

php error scandir() has been disabled for security reasons

reason:

Scandir() method is disabled

solve:

Edit files

disable_functions = scandir,passthru,exec,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,pfsockopen,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,fsocket,fsockopen

Remove scandir and save and restart php-fpm.

Location: /usr/local/php/etc/

Finally, execute /etc//php-fpm restart to restart

The above article solves the problem of modifying configuration access in tp5 under nginx. This is all the content I share with you. I hope it can give you a reference and I hope you can support me more.