Hi,
I am developing a site on a throw away subdomain with the intention of moving the WP CMS to main domain. Users must be logged into see the development site. I just did a site:sub.domain.com and there are 1000s of pages indexed. I do have
" function cwc_disable_feed() {
wp_die( __('No feed available,please visit our homepage!') );
}
add_action('do_feed', 'cwc_disable_feed', 1);
add_action('do_feed_rdf', 'cwc_disable_feed', 1);
add_action('do_feed_rss', 'cwc_disable_feed', 1);
add_action('do_feed_rss2', 'cwc_disable_feed', 1);
add_action('do_feed_atom', 'cwc_disable_feed', 1);
"
Added to functions.php as a result but i wonder if i missed anything ?
My plan now is to 301 the subdomain pages to the main domain pages keeping the URL structure intact and hope a dup penalty is not applied.
Anybody been through this , any advice or experience come to mind ?
Thanks