Redirect to /404/

Is there a way I can redirect the URL slug of the 404 template to /404/ so so for example if I have /category/media/blah it redirects to /404/

Is that possible I don't know if it can be done using .htaccess.

Ronny

Topic wp-redirect redirect 404-error Wordpress

Category Web


So you can do something like this:

  1. Open the 404.php file and add these lines to the top of it. If you don't have one, create it. This will ensure WordPress uses this file for all permalinks that no longer exist or never existed.
    <?php 
    /**
    * Template Name: 404 Page
    */
    
    $four_oh_four = get_permalink( get_page_by_path( '404' ) );
    wp_redirect( $four_oh_four );
    exit();
  1. Create a page with slug '404'.The above code will now redirect from the regular 404 template to a page with '404' slug.

I haven't tested it but should work.

Optionally, you could also use PHP's default redirection using headers if you want to. I just used WordPress' redirection API.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.