php查询导致404错误

时间:2013-07-21 02:29:40

标签: php wordpress http-status-code-404

我一直在使用以下代码发布博文。

<?php query_posts('cat=35'); ?>
<?php while (have_posts()) : the_post(); ?>
<a>" rel="bookmark" title="Permanent Link to <?php the_title();  ?>"><?php                the_title();    ?></a>

我注意到我的网站没有被谷歌索引。所以我在http://www.webpagetest.org/

使用了网络测试工具

测试返回404代码,这意味着Google认为该页面不存在。

我还注意到,我使用相同代码的其他网站没有收到404错误,并被Google编入索引。

当我将代码放在普通页面上时,问题就出现了

所有博客文章都存在并正确显示,网站本身存在并快速加载

造成404错误的原因是什么?

0 个答案:

没有答案