VBSEO sitemap generator icin bir eklenti kullaniyorum ama linkler
seo lu olmuyor. Linkleri nasil crr ile
seo ya dönüstürüyorsak eminim sitemap generator icindede bunu yapmak mümkündür. Acaba ne zaman bu mevcut duruma gelecek. Örnegin su sekilde bir sitemap eklentisi yapmislar
PHP Code:
<?php
/******************************************************************************************
* vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc. *
*-----------------------------------------------------------------------------------------*
* *
* Copyright © 2005-2008, Crawlability, Inc. All rights reserved. *
* You may not redistribute this file or its derivatives without written permission. *
* *
* Sales Email: sales@crawlability.com *
* *
*-------------------------------------LICENSE AGREEMENT-----------------------------------*
* 1. You are free to download and install this plugin on any vBulletin forum for which *
* you hold a valid vB license. *
* 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files *
* themselves. *
* 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files. *
* 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution. *
* 4. Brought to you by nymyth @ www.loungeboard.com & www.bollywoodmashups.com. *
******************************************************************************************/
$mods = $db->query("SELECT categoryid FROM " . TABLE_PREFIX . "vbtube_categories");
while ($mod = $db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/vbtube_cat.php?do=all&cat&id='.$mod['categoryid'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 0.75, '', 'daily');
}
$mods = $db->query("SELECT tubeid FROM " . TABLE_PREFIX . "vbtube_tubes");
while ($mod = $db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/vbtube_show.php?do=tube&tubeid='.$mod['tubeid'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}
?>
Downloads II eklentisi icin ise olan ve
seo ya uygun sitemap kodlari ise su ;
PHP Code:
<?php
/******************************************************************************************
* vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc. *
*-----------------------------------------------------------------------------------------*
* *
* Copyright © 2005-2007, Crawlability, Inc. All rights reserved. *
* You may not redistribute this file or its derivatives without written permission. *
* *
* Sales Email: sales@crawlability.com *
* *
*-------------------------------------LICENSE AGREEMENT-----------------------------------*
* 1. You are free to download and install this plugin on any vBulletin forum for which *
* you hold a valid vB license. *
* 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files *
* themselves. *
* 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files. *
* 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution. *
******************************************************************************************/
$dl_seourls = true;
$mods = $db->query("SELECT id,name FROM " . TABLE_PREFIX . "dl_cats ORDER BY `id`");
while ($mod = $db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/downloads.php?do=cat'.
($dl_seourls?'&title='.vbseo_filter_text($mod['name']):'').
'&id='.$mod['id'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}
$mods = $db->query("SELECT f.id as fid,f.name as fname,c.id as cid,c.name as cname".
" FROM " . TABLE_PREFIX . "dl_files f".
" LEFT JOIN " . TABLE_PREFIX . "dl_cats c on c.id=f.category");
while ($mod = $db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/downloads.php?do=file'.
($dl_seourls?'&title='.vbseo_filter_text($mod['fname']).'&cid='.$mod['cid'].'&ctitle='.vbseo_filter_text($mod['cname']):'').
'&id='.$mod['fid'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}
?>
Zannedersem buna göre uygulanabilir.