Webmaster Forumu

Geri git   Webmaster Forumu > Webmaster Kaynak Eğitim Tanıtım Hizmet > Arama Motorları ve SEO Teknikleri > Google Optimizasyon

Google Optimizasyon optimizasyon ipuçları

Cevapla
 
LinkBack Seçenekler Stil
  #1 (permalink)   iTrader 
Alt 2005-12-28, 09:26
Member
 
Üyelik tarihi: Feb 2005
Mesajlar: 155
Tecrübe Puanı: 3
iTrader: %0/0
qwerty is on a distinguished road
Standart Google Sitemap Hazırlamak

Web ya da windows üzerinden otomatik google sitemap hazırlama programları xml dosyasını oluştururken sayfaları doğru biçimde indexleyemiyor.

Örneğin

http://www.xxxxxx.com/komikvideolar.asp?ss=&sayfa1=1

yerine

http://www.xxxxxx.com/ss=sayfa1=1

şeklinde indexleme yapıyor.

Bu tür sayfaları da doğru biçimde görerek otomatik sitemap oluşturan
program ya da web siteleri var mı ? tecrübesi olan arkadaşlar yardım edebilirlerse sevinirim.
Alıntı ile Cevapla

  #2 (permalink)   iTrader 
Alt 2005-12-28, 09:47
uyuz - ait Kullanıcı Resmi (Avatar)
Gold Member
 
Üyelik tarihi: Dec 2003
Mesajlar: 1.544
Tecrübe Puanı: 5
iTrader: %0/0
uyuz is on a distinguished road
Standart

& olan yere &amp koyacaksın sitemap oluştururken...
Alıntı ile Cevapla

  #3 (permalink)   iTrader 
Alt 2005-12-28, 10:24
Member
 
Üyelik tarihi: Feb 2005
Mesajlar: 155
Tecrübe Puanı: 3
iTrader: %0/0
qwerty is on a distinguished road
Standart

Teşekkürler, site map bittikten sonra &'ları &amp ile değiştirebilirim. Web üzerinden otomatik sitemap oluşturma hizmeti veren bir site biliyormusunuz.
Alıntı ile Cevapla

  #4 (permalink)   iTrader 
Alt 2005-12-28, 10:50
uyuz - ait Kullanıcı Resmi (Avatar)
Gold Member
 
Üyelik tarihi: Dec 2003
Mesajlar: 1.544
Tecrübe Puanı: 5
iTrader: %0/0
uyuz is on a distinguished road
Standart

googleın kendisi tavsiye ediyordu bir script...
Alıntı ile Cevapla

  #5 (permalink)   iTrader 
Alt 2005-12-28, 11:13
Member
 
Üyelik tarihi: Feb 2005
Mesajlar: 155
Tecrübe Puanı: 3
iTrader: %0/0
qwerty is on a distinguished road
Standart

Bir zip dosyası halinde bir kaç dosyadan oluşuyor.

Bu scriptin config dosyası burada bu dosyanın içinde
nasıl doldurulacağına ilişkin tarifler var. İngilizce bilen
arkadaşlar aşağıdaki metni tercüme edebilirler.

Sadece example.com yerine kendi site adresimizi
yazmak yetmiyor sanırım.

------------------------ example_config---------------------

<?xml version="1.0" encoding="UTF-8"?>
<!--
sitemap_gen.py example configuration script

This file specifies a set of sample input parameters for the
sitemap_gen.py client.

You should copy this file into "config.xml" and modify it for
your server.


************************************************** ******* -->


<!-- ** MODIFY **
The "site" node describes your basic web site.

Required attributes:
base_url - the top-level URL of the site being mapped
store_into - the webserver path to the desired output file.
This should end in '.xml' or '.xml.gz'
(the script will create this file)

Optional attributes:
verbose - an integer from 0 (quiet) to 3 (noisy) for
how much diagnostic output the script gives
suppress_search_engine_notify="1"
- disables notifying search engines about the new map
(same as the "testing" command-line argument.)
default_encoding
- names a character encoding to use for URLs and
file paths. (Example: "UTF-8")
-->
<site
base_url="http://www.example.com/"
store_into="/var/www/docroot/sitemap.xml"
verbose="1"
>

<!-- ************************************************** ******
INPUTS

All the various nodes in this section control where the script
looks to find URLs.

MODIFY or DELETE these entries as appropriate for your server.
************************************************** ******* -->

<!-- ** MODIFY or DELETE **
"url" nodes specify individual URLs to include in the map.

Required attributes:
href - the URL

Optional attributes:
lastmod - timestamp of last modification (ISO8601 format)
changefreq - how often content at this URL is usually updated
priority - value 0.0 to 1.0 of relative importance in your site
-->
<url href="http://www.example.com/stats?q=name" />
<url
href="http://www.example.com/stats?q=age"
lastmod="2004-11-14T01:00:00-07:00"
changefreq="yearly"
priority="0.3"
/>


<!-- ** MODIFY or DELETE **
"urllist" nodes name text files with lists of URLs.
An example file "example_urllist.txt" is provided.

Required attributes:
path - path to the file

Optional attributes:
encoding - encoding of the file if not US-ASCII
-->
<urllist path="example_urllist.txt" encoding="UTF-8" />


<!-- ** MODIFY or DELETE **
"directory" nodes tell the script to walk the file system
and include all files and directories in the Sitemap.

Required attributes:
path - path to begin walking from
url - URL equivalent of that path

Optional attributes:
default_file - name of the index or default file for directory URLs
-->
<directory path="/var/www/icons" url="http://www.example.com/images/" />
<directory
path="/var/www/docroot"
url="http://www.example.com/"
default_file="index.html"
/>


<!-- ** MODIFY or DELETE **
"accesslog" nodes tell the script to scan webserver log files to
extract URLs on your site. Both Common Logfile Format (Apache's default
logfile) and Extended Logfile Format (IIS's default logfile) can be read.

Required attributes:
path - path to the file

Optional attributes:
encoding - encoding of the file if not US-ASCII
-->
<accesslog path="/etc/httpd/logs/access.log" encoding="UTF-8" />
<accesslog path="/etc/httpd/logs/access.log.0" encoding="UTF-8" />
<accesslog path="/etc/httpd/logs/access.log.1.gz" encoding="UTF-8" />


<!-- ** MODIFY or DELETE **
"sitemap" nodes tell the script to scan other Sitemap files. This can
be useful to aggregate the results of multiple runs of this script into
a single Sitemap.

Required attributes:
path - path to the file
-->
<sitemap path="/var/www/docroot/subpath/sitemap.xml" />


<!-- ************************************************** ******
FILTERS

Filters specify wild-card patterns that the script compares
against all URLs it finds. Filters can be used to exclude
certain URLs from your Sitemap, for instance if you have
hidden content that you hope the search engines don't find.

Filters can be either type="wildcard", which means standard
path wildcards (* and ?) are used to compare against URLs,
or type="regexp", which means regular expressions are used
to compare.

Filters are applied in the order specified in this file.

An action="drop" filter causes exclusion of matching URLs.
An action="pass" filter causes inclusion of matching URLs,
shortcutting any other later filters that might also match.
If no filter at all matches a URL, the URL will be included.
Together you can build up fairly complex rules.

The default action is "drop".
The default type is "wildcard".

You can MODIFY or DELETE these entries as appropriate for
your site. However, unlike above, the example entries in
this section are not contrived and may be useful to you as
they are.
************************************************** ******* -->

<!-- Exclude URLs that end with a '~' (IE: emacs backup files) -->
<filter action="drop" type="wildcard" pattern="*~" />

<!-- Exclude URLs within UNIX-style hidden files or directories -->
<filter action="drop" type="regexp" pattern="/\.[^/]*" />

</site>
Alıntı ile Cevapla

  #6 (permalink)   iTrader 
Alt 2005-12-28, 13:35
Gamend - ait Kullanıcı Resmi (Avatar)
Makale Yazarı
 
Üyelik tarihi: Mar 2005
Nerden: Ankara
Mesajlar: 2.205
Tecrübe Puanı: 5
iTrader: %100/1
Gamend will become famous soon enoughGamend will become famous soon enough
Standart

http://www.freefind.com/create-sitemap.html
http://tools.webmasters.sk/sitemap-creator.php
http://www.sitemapxml.com/

Bunlara bir gözatmakta fayda var.
__________________
Makale Yazılır
Alıntı ile Cevapla

  #7 (permalink)   iTrader 
Alt 2005-12-28, 14:25
Member
 
Üyelik tarihi: Feb 2005
Mesajlar: 155
Tecrübe Puanı: 3
iTrader: %0/0
qwerty is on a distinguished road
Standart

Gamend sağolasın eline sağlık
Alıntı ile Cevapla

  #8 (permalink)   iTrader 
Alt 2005-12-28, 18:34
pembekedi - ait Kullanıcı Resmi (Avatar)
Gold Member
 
Üyelik tarihi: Feb 2005
Nerden: Neverland
Mesajlar: 1.803
Tecrübe Puanı: 4
iTrader: %100/8
pembekedi will become famous soon enoughpembekedi will become famous soon enough
Standart

qwerty o yazdıın tam cinnetlik ona hiç bulaşma bence bi ara baktım ben çıkamadım içinden başka yerlerde dene istersen.

bi de hazır konu açılmışken sormak istiyorum ben o sitemapin linkini siteye koymak mı lazım?
__________________
"de" ekini ayrı yazdığınızda anlam kayboluyorsa, o "de" bitişik yazılır. herkes bilsin :)
Alıntı ile Cevapla

  #9 (permalink)   iTrader 
Alt 2005-12-28, 22:05
Member
 
Üyelik tarihi: Feb 2005
Mesajlar: 155
Tecrübe Puanı: 3
iTrader: %0/0
qwerty is on a distinguished road
Standart

Evet siteye yüklemek gerekiyor.
Alıntı ile Cevapla

  #10 (permalink)   iTrader 
Alt 2005-12-28, 23:22
Member
 
Üyelik tarihi: Apr 2005
Nerden: Live in .NET
Mesajlar: 404
Blog Entries: 1
Tecrübe Puanı: 3
iTrader: %100/2
DincerAydogdu is on a distinguished road
Standart

Ligos gsitemap diye bir tool kullandım bir kaç sitede. .NET framework istiyor çalışmak için. sub directory'lerde problem çıkartıyor. 1-2 ufak müdahele ile sorun hallediliyor. Ama bugüne kadar sitemap'in istatistik dışında bir faydasını göremediğimi söyleyebilirim. Hatta bir siteme üşenip sitemap yapmadım. Daha hızlı indexlendiğini farkettim.
__________________
Eğer bir yanlış yapacaksan, bari onu doğru yap...
Alıntı ile Cevapla

Cevapla

Seçenekler
Stil


Benzer Konular
Konu Konuyu Başlatan Forum Cevaplar Son Mesaj
Google sitemap ve katkıları Gamend Google Optimizasyon 71 2008-07-11 10:41
Google sitemap Zeprhy Google Optimizasyon 0 2006-06-25 15:58
google sitemap hengame Google Optimizasyon 15 2005-11-05 21:40
Google Sitemap trichnosis Google Optimizasyon 67 2005-07-04 22:00
Google Sitemap Feedbackleri astraler Google Optimizasyon 20 2005-06-22 07:01


Bütün Zaman Ayarları WEZ +2 olarak düzenlenmiştir. Şu Anki Saat: 19:39 .


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0

Firefox