我有一点问题,是什么让我有点害怕。我希望你能帮助我。如果我做了网站: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(); ?>