Peter1955 Posted June 23, 2022 Share Posted June 23, 2022 Hello Long time reader, first time posting I want to edit my 404.php file so that it redirects to my own designed 404 page I am using a thinkup theme for my site <?php /** * The template for displaying 404 pages (Not Found). * * @package ThinkUpThemes */ get_header(); ?> <?php thinkup_input_404content(); ?> <?php get_footer(); ?> and i was told to insert this line <?php header("Location: http://www.redirect.tomy.url.com/"); ?> So do i just replace the <?php thinkup_input...... line with the above line edited with the right url?? Any assistance will be very useful as I am not used to php coding as yet thanks Peter1955 Quote Link to comment https://forums.phpfreaks.com/topic/314955-404php-redirect/ Share on other sites More sharing options...
requinix Posted June 23, 2022 Share Posted June 23, 2022 Is your custom 404 page on some other site? Quote Link to comment https://forums.phpfreaks.com/topic/314955-404php-redirect/#findComment-1597562 Share on other sites More sharing options...
Solution Peter1955 Posted June 23, 2022 Author Solution Share Posted June 23, 2022 No it will be on my site. I just have to edit the url when i upload it Quote Link to comment https://forums.phpfreaks.com/topic/314955-404php-redirect/#findComment-1597563 Share on other sites More sharing options...
requinix Posted June 23, 2022 Share Posted June 23, 2022 Don't use a redirect. Half of the point of a 404 page is that it returns a 404, and using a redirect makes it do something different. Why not just change the 404.php to be this new page? Wouldn't that be easier? 1 Quote Link to comment https://forums.phpfreaks.com/topic/314955-404php-redirect/#findComment-1597565 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.