Wordpress:有些page_id重定向到最新的帖子 - 什么不对?

时间:2017-06-20 15:07:54

标签: html wordpress .htaccess redirect

我的wordpress网站有问题。
例如,我的数据库包含两个帖子,其中包含ID 10和15.当我写道:

/?page_id = 10 - 我重定向到我的帖子页面,ID为10,很好。

/?page_id = 20 - 我重定向到404页面。也很好。

/?page_id = loremimpus - 我重定向到最新帖子,ID = 15。但我需要重定向到404页面。

什么是错的,哪里出错?

我的single.php代码:

<?php get_header(); the_post(); ?>

  <article>
    <h1><?php the_title(); ?></h1>
    <?php the_content(); ?>
  <article>

<?php get_footer(); ?>

0 个答案:

没有答案