谷歌正在索引WordPress附件页面

时间:2012-02-09 作者:Tauri

我有一点问题,是什么让我有点害怕。我希望你能帮助我。如果我做了网站:www.somesitename。我看到谷歌正在索引我的附件页面。我想将附件URL重定向到父帖子,并阻止google为其编制索引。

我使用了不同的重定向插件,希望我能自己修复它,但插件不起作用。我收到一个错误:“试图打开www.somessitename.com/?attachment\\u id=1982时发生了太多重定向”。

我是否需要更改附件中的某些内容。php失败?知道是什么导致了这个问题吗?

<?php
/**
 * The template for displaying attachments.
 *
 * @package WordPress
 * @subpackage 
 */

get_header(); ?>
</div>  <!-- /#header-bg -->
<div id="content-wrap" class="clearfix">
    <div id="content" role="main">
        <h1> </h1>
        <div id="main-content">

            <?php
            /* Run the loop to output the attachment.
             * If you want to overload this in a child theme then include a file
             * called loop-attachment.php and that will be used instead.
             */
            get_template_part( \'loop\', \'attachment\' );
            ?>

        </div> <!-- /#main-content -->
        <div id="side-content">
            <?php get_sidebar(); ?> 
        </div><!-- #side-content/ -->  
    </div>  <!-- #content/ -->
</div>  <!-- /#content-wrap -->

<?php get_footer(); ?>

1 个回复
SO网友:Wyck

如果人类可以访问该页面,那么机器人可以并将对其进行索引,即使谷歌将追随机器人。txt文件,并非所有搜索引擎都这样做。

你最好的办法就是不要有一个附件页,但你也可以重新定向附件。php或图像。php(或任何真正的php)通过使用以下内容:

<?php wp_redirect(get_permalink($post->post_parent)); ?>
另外,你可能想添加一个301来告诉谷歌它已经移动了。

结束

相关推荐