Manual:generateSitemap.php
| MediaWiki File: generateSitemap.php | |
|---|---|
| Location: | /maintenance/ |
| Source code: | HEAD |
| Classes: | None |
generateSitemap.php is used to generate a sitemap for a MediaWiki installation. Sitemaps are files that make it more efficient for search engine robots (like googlebot) to crawl a website (so long as the bot supports the sitemap protocol.)
By default, the script generates a sitemap index file and one gzip-compressed sitemap for each namespace that has content. See #Options for a list of options that can be passed to the script.
Attention: In MediaWiki 1.16.0 the sitemap generated by the script does not work with Google. You need to patch the script with this first.
For generic instructions on using MediaWiki's maintenance scripts, see Manual:Maintenance_scripts.
[edit] Options
--help
- displays the available options for generateSitemap.php
--fspath=<path>
- The file system path to save to, e.g sitemap/. Note, this directory must be viewable online!
--urlpath=<prefix>
- The URL that points to --fspath, e.g.
- If specified, gets prefixed to the filenames in the sitemap index. This is needed because some search engines *cough*Google*cough* require absolute URLs in sitemaps. You should specify --server also; the values will often be similar, but having them separate allows the script to accommodate even unusual setups.
--server=<server>
- The protocol and host name to use in URLs, e.g.
- This is sometimes necessary because server name detection may fail in command line scripts and will show up only as "localhost" or "my.servername" in the xml files.
--compress=[yes|no]
- Whether or not to compress the sitemap files. The default setting is
yes.
[edit] Example
Creating a sitemap for Google Webmaster Tools:
First (in $IP):
mkdir sitemap
Then:
php maintenance/generateSitemap.php \ --fspath sitemap \ --server http://mydomain.org \ --urlpath http://metadatabase.org/sitemap
Simples!
[edit] Alternative Version
| Language: | English • Polski |
|---|