Just to be sure, as Ive hinted at this issue in different posts but here is an example of an issue i see in webmaster tools. With 60,000 pages having identical title tags (many from post1 / post2 type issue but i see a lot of this as well
![]()
Just to be sure, as Ive hinted at this issue in different posts but here is an example of an issue i see in webmaster tools. With 60,000 pages having identical title tags (many from post1 / post2 type issue but i see a lot of this as well
![]()
hello,
please paste your links between code tag because I would like to try it.
I checked this one:
and I have - Page not found.Code:phpBB2/ga/promotions/6949-a.html
let me try again, its not easy to copy and paste like that from webmaster tools.
here is a message as well
When we tested a sample of URLs from your Sitemap, we found that some URLs redirect to other locations. We recommend that your Sitemap contain URLs that point to the final destination (the redirect target) instead of redirecting to another URL.
[code]http://www.allfreechips.com/phpBB2/da/archive-casino-stuff/2861-new-$25-no-deposit-100-free-progressive-spins-expired.html[code]
here is a duplicate from webmaster
Code:http://www.allfreechips.com/phpBB2/mt/dice/2614-%C5%BBbaljat-sorry-slots-alley-acct-isem.html http://www.allfreechips.com/phpBB2/mt/dice/2614-maaf-salah-slot-acct-alley-nama.html
any thoughts on the different variations?
I am looking which one redirection is made here by vBSEO.
Ok I have some idea.
Please write here your vBET version on your forum. If you don't have the newest one - you can upgrade vBET to the latest version - 3.4.0.
In vBET 3.4.0 we made a 301 redirections from old 302 (not permanent).
If you use this old version of VBET and If somebody will use a bad url he will be redirected to the good one by 302 redirection and google will index it! (so this is not good).
So you can upgrade vBET to 3.4.0 version or use this solution to make 301 redirect in this place:
1. open and edit file (and make a COPY!):
forum root/includes/vbenterprisetranslator_functions_hooks.php
2. in this file find:
3. in this function find:PHP Code:
function vbet_global_start(&$template_hook) {
4. and replace with:PHP Code:
exec_header_redirect($threadurl);
5. go to the end of this file and find:PHP Code:
vbet_vb_exec_header_redirect($threadurl);
6. put before ?> this code:PHP Code:
?>
7. save and test it!PHP Code:
function vbet_vb_exec_header_redirect($url)
{
global $vbulletin;
$url = create_full_url($url);
$url = str_replace('&', '&', $url); // prevent possible oddity
if (strpos($url, "\r\n") !== false)
{
trigger_error("Header may not contain more than a single header, new line detected.", E_USER_ERROR);
}
header("Location: $url", 0, 301);
if ($vbulletin->options['addheaders'] AND (SAPI_NAME == 'cgi' OR SAPI_NAME == 'cgi-fcgi'))
{
header('Status: 301 Moved Permanently');
}
define('NOPMPOPUP', 1);
if (defined('NOSHUTDOWNFUNC'))
{
exec_shut_down();
}
exit;
}
I will update the code but I already updated the Vbulletin redirect to a perm 301 a while back
ok I am waiting for your confirmation.
no answer- solved, if not - please wite here and i will open this thread again