Title: etacloudtech's Replies | WordPress.org

---

# etacloudtech

  [  ](https://wordpress.org/support/users/etacloudtech/)

 *   [Profile](https://wordpress.org/support/users/etacloudtech/)
 *   [Topics Started](https://wordpress.org/support/users/etacloudtech/topics/)
 *   [Replies Created](https://wordpress.org/support/users/etacloudtech/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/etacloudtech/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/etacloudtech/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/etacloudtech/engagements/)
 *   [Favorites](https://wordpress.org/support/users/etacloudtech/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] Redirection of file with extension php and not found the redirection not working](https://wordpress.org/support/topic/redirection-of-file-with-extension-php-and-not-found-the-redirection-not-working/)
 *  Thread Starter [etacloudtech](https://wordpress.org/support/users/etacloudtech/)
 * (@etacloudtech)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/redirection-of-file-with-extension-php-and-not-found-the-redirection-not-working/#post-17338737)
 * with the above settings, all php files that result in 404 will pass in WordPress
   redirection plugin
    -  This reply was modified 2 years, 5 months ago by [etacloudtech](https://wordpress.org/support/users/etacloudtech/).
    -  This reply was modified 2 years, 5 months ago by [etacloudtech](https://wordpress.org/support/users/etacloudtech/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] Redirection of file with extension php and not found the redirection not working](https://wordpress.org/support/topic/redirection-of-file-with-extension-php-and-not-found-the-redirection-not-working/)
 *  Thread Starter [etacloudtech](https://wordpress.org/support/users/etacloudtech/)
 * (@etacloudtech)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/redirection-of-file-with-extension-php-and-not-found-the-redirection-not-working/#post-17338734)
 * Ok fixed, everyone that want to fix this problem in nginx:
 *     ```wp-block-code
       location ~ .php$ {
       try_files $uri @missing;
       #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
       include fastcgi_params;
       fastcgi_intercept_errors on;
       fastcgi_pass unix:/run/php/php8.2-fpm.sock;
       #The following parameter can be also included in fastcgi_params file
       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
       }    
       location @missing{
                   include fastcgi_params;
                   fastcgi_intercept_errors on;
                   fastcgi_pass unix:/run/php/php8.2-fpm.sock;
                   #The following parameter can be also included in fastcgi_params>
                   fastcgi_param  SCRIPT_FILENAME $document_root/index.php;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] Redirection of file with extension php and not found the redirection not working](https://wordpress.org/support/topic/redirection-of-file-with-extension-php-and-not-found-the-redirection-not-working/)
 *  Thread Starter [etacloudtech](https://wordpress.org/support/users/etacloudtech/)
 * (@etacloudtech)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/redirection-of-file-with-extension-php-and-not-found-the-redirection-not-working/#post-17338720)
 * So i have to custom redirect the php URL?

Viewing 3 replies - 1 through 3 (of 3 total)