ich habe keine Ahnung was ich falsch mache. Ich möchte mit dem Google Sitemap Gemerator meine Sitemap erstellen.... Geht soweit gut fast schon zu gut. Ich bekomme alle Verzeichnisse und alle Dateien in dieses SiteMap rein. Das sind ca. 5792 Urls die er mir da rein schreibt.
hier mal meine Config
Code: Alles auswählen
<?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://diabetesexpert.de/"
store_into="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://diabetesexpert.de/stats?q=name" />
<url
href="http://diabetesexpert.de/stats?q=age"
lastmod="2008-06-034T01:00:00-07:00"
changefreq="daily"
priority="0.5"
/>
<!-- ** 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="/srv/www/vhosts/diabetesexpert.de/httpdocs/"
url="http://diabetesexpert.de/"
default_file="index.php"
/>
</site>
Danke für einen Tipp
Gruß
Torsten