dpa0760 2012-06-14 16:41
浏览 43
已采纳

404重定向不起作用

Hi I'm type to make a plugin which shows a page instead of sending a 404 page when on a page that doesn't exist

I know I can edit to 404.php file to do this but i need to fit this in a plugin.

If I remove the if statement then its works on all pages which isn't what I want.
So i put the if(is_404()) statement in but it doesn't seem to work at all now...

    function da_404_redirect()
    {
      if(is_404())
      {      
        query_posts('page_id=2');
        status_header( "200" );
      }
    }
    add_action('init','da_404_redirect');
  • 写回答

3条回答 默认 最新

  • dongmi1663 2012-06-15 00:28
    关注

    To redirect, don't hook on init, especially if you use conditional tag like is_404(). Any conditional tag will still return false in init.

    USE: template_redirect instead or pre_get_post if you need to change something on the WP_Query

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 51单片机中C语言怎么做到下面类似的功能的函数(相关搜索:c语言)
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题