Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork296
Create and generate sitemaps with ease
License
spatie/laravel-sitemap
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This package can generate a sitemap without you having to add urls to it manually. This works by crawling your entire site.
useSpatie\Sitemap\SitemapGenerator;SitemapGenerator::create('https://example.com')->writeToFile($path);
You can also create your sitemap manually:
useCarbon\Carbon;useSpatie\Sitemap\Sitemap;useSpatie\Sitemap\Tags\Url;Sitemap::create() ->add(Url::create('/home') ->setLastModificationDate(Carbon::yesterday())) ->add(...) ->writeToFile($path);
Or you can have the best of both worlds by generating a sitemap and then adding more links to it:
SitemapGenerator::create('https://example.com') ->getSitemap() ->add(Url::create('/extra-page') ->setLastModificationDate(Carbon::yesterday())) ->add(...) ->writeToFile($path);
You can also control the maximum depth of the sitemap:
SitemapGenerator::create('https://example.com') ->configureCrawler(function (Crawler$crawler) {$crawler->setMaximumDepth(3); }) ->writeToFile($path);
The generator hasthe ability to execute JavaScript on each page so links injected into the dom by JavaScript will be crawled as well.
You can also use one of your available filesystem disks to write the sitemap to.
SitemapGenerator::create('https://example.com')->getSitemap()->writeToDisk('public','sitemap.xml');
You may need to set the file visibility on one of your sitemaps. For example, if you are writing a sitemap to S3 that you want to be publicly available. You can set the third parameter totrue to make it public. Note: This can only be used on the->writeToDisk() method.
SitemapGenerator::create('https://example.com')->getSitemap()->writeToDisk('public','sitemap.xml',true);
You can also add your models directly by implementing the\Spatie\Sitemap\Contracts\Sitemapable interface.
useSpatie\Sitemap\Contracts\Sitemapable;useSpatie\Sitemap\Tags\Url;class Postextends Modelimplements Sitemapable{publicfunctiontoSitemapTag():Url |string |array {// Simple return:returnroute('blog.post.show',$this);// Return with fine-grained control:return Url::create(route('blog.post.show',$this)) ->setLastModificationDate(Carbon::create($this->updated_at)); }}
Now you can add a single post model to the sitemap or even a whole collection.
useSpatie\Sitemap\Sitemap;Sitemap::create() ->add($post) ->add(Post::all());
This way you can add all your pages super fast without the need to crawl them all.
We invest a lot of resources into creatingbest in class open source packages. You can support us bybuying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address onour contact page. We publish all received postcards onour virtual postcard wall.
First, install the package via composer:
composer require spatie/laravel-sitemap
The package will automatically register itself.
If you want to update your sitemap automatically and frequently you need to performsome extra steps.
You can override the default options for the crawler. First publish the configuration:
php artisan vendor:publish --provider="Spatie\Sitemap\SitemapServiceProvider" --tag=sitemap-configThis will copy the default config toconfig/sitemap.php where you can edit it.
useGuzzleHttp\RequestOptions;useSpatie\Sitemap\Crawler\Profile;return [/* * These options will be passed to GuzzleHttp\Client when it is created. * For in-depth information on all options see the Guzzle docs: * * http://docs.guzzlephp.org/en/stable/request-options.html */'guzzle_options' => [/* * Whether or not cookies are used in a request. */ RequestOptions::COOKIES =>true,/* * The number of seconds to wait while trying to connect to a server. * Use 0 to wait indefinitely. */ RequestOptions::CONNECT_TIMEOUT =>10,/* * The timeout of the request in seconds. Use 0 to wait indefinitely. */ RequestOptions::TIMEOUT =>10,/* * Describes the redirect behavior of a request. */ RequestOptions::ALLOW_REDIRECTS =>false, ],/* * The sitemap generator can execute JavaScript on each page so it will * discover links that are generated by your JS scripts. This feature * is powered by headless Chrome. */'execute_javascript' =>false,/* * The package will make an educated guess as to where Google Chrome is installed. * You can also manually pass it's location here. */'chrome_binary_path' =>'',/* * The sitemap generator uses a CrawlProfile implementation to determine * which urls should be crawled for the sitemap. */'crawl_profile' => Profile::class, ];
The easiest way is to crawl the given domain and generate a sitemap with all found links.The destination of the sitemap should be specified by$path.
SitemapGenerator::create('https://example.com')->writeToFile($path);
The generated sitemap will look similar to this:
<?xml version="1.0" encoding="UTF-8"?><urlsetxmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>https://example.com</loc> <lastmod>2016-01-01T00:00:00+00:00</lastmod> </url> <url> <loc>https://example.com/page</loc> <lastmod>2016-01-01T00:00:00+00:00</lastmod> </url> ...</urlset>
You can create a custom crawl profile by implementing theSpatie\Crawler\CrawlProfiles\CrawlProfile interface and by customizing theshouldCrawl() method for full control over what url/domain/sub-domain should be crawled:
useSpatie\Crawler\CrawlProfiles\CrawlProfile;usePsr\Http\Message\UriInterface;class CustomCrawlProfileextends CrawlProfile{publicfunctionshouldCrawl(UriInterface$url):bool {if ($url->getHost() !=='localhost') {returnfalse; }return$url->getPath() ==='/'; }}
and register yourCustomCrawlProfile::class inconfig/sitemap.php.
return [ .../* * The sitemap generator uses a CrawlProfile implementation to determine * which urls should be crawled for the sitemap. */'crawl_profile' => CustomCrawlProfile::class, ];
If you don't want a crawled link to appear in the sitemap, just don't return it in the callable you pass tohasCrawled.
useSpatie\Sitemap\SitemapGenerator;useSpatie\Sitemap\Tags\Url;SitemapGenerator::create('https://example.com') ->hasCrawled(function (Url$url) {if ($url->segment(1) ==='contact') {return; }return$url; }) ->writeToFile($sitemapPath);
You can also instruct the underlying crawler to not crawl some pages by passing acallable toshouldCrawl.
Note:shouldCrawl will only work with the default crawlProfile or custom crawl profiles that implement ashouldCrawlCallback method.
useSpatie\Sitemap\SitemapGenerator;usePsr\Http\Message\UriInterface;SitemapGenerator::create('https://example.com') ->shouldCrawl(function (UriInterface$url) {// All pages will be crawled, except the contact page.// Links present on the contact page won't be added to the// sitemap unless they are present on a crawlable page.returnstrpos($url->getPath(),'/contact') ===false; }) ->writeToFile($sitemapPath);
The crawler itself can beconfigured to do a few different things.
You can configure the crawler used by the sitemap generator, for example: to ignore robot checks; like so.
SitemapGenerator::create('http://localhost:4020') ->configureCrawler(function (Crawler$crawler) {$crawler->ignoreRobots(); }) ->writeToFile($file);
You can limit the amount of pages crawled by callingsetMaximumCrawlCount
useSpatie\Sitemap\SitemapGenerator;SitemapGenerator::create('https://example.com') ->setMaximumCrawlCount(500)// only the 500 first pages will be crawled ...
The sitemap generator can execute JavaScript on each page so it will discover links that are generated by your JS scripts. You can enable this feature by settingexecute_javascript in the config file totrue.
Under the hood,headless Chrome is used to execute JavaScript. Here are some pointers onhow to install it on your system.
The package will make an educated guess as to where Chrome is installed on your system. You can also manually pass the location of the Chrome binary toexecuteJavaScript().
You can manually add links to a sitemap:
useSpatie\Sitemap\SitemapGenerator;useSpatie\Sitemap\Tags\Url;SitemapGenerator::create('https://example.com') ->getSitemap()// here we add one extra link, but you can add as many as you'd like ->writeToFile($sitemapPath);
Multilingual sites may have several alternate versions of the same page (one per language). Based on the previous example adding an alternate can be done as follows:
useSpatie\Sitemap\SitemapGenerator;useSpatie\Sitemap\Tags\Url;SitemapGenerator::create('https://example.com') ->getSitemap()// here we add one extra link, but you can add as many as you'd like ->writeToFile($sitemapPath);
Note theaddAlternate function which takes an alternate URL and the locale it belongs to.
Urls can also have images. See alsohttps://developers.google.com/search/docs/advanced/sitemaps/image-sitemaps
useSpatie\Sitemap\Sitemap;useSpatie\Sitemap\Tags\Url;Sitemap::create()// here we add an image to a URL ->add(Url::create('https://example.com')->addImage('https://example.com/images/home.jpg','Home page image')) ->writeToFile($sitemapPath);
As well as images, videos can be wrapped by URL tags. Seehttps://developers.google.com/search/docs/crawling-indexing/sitemaps/video-sitemaps
You can set required attributes like so:
useSpatie\Sitemap\Sitemap;useSpatie\Sitemap\Tags\Url;Sitemap::create() ->add( Url::create('https://example.com') ->addVideo('https://example.com/images/thumbnail.jpg','Video title','Video Description','https://example.com/videos/source.mp4','https://example.com/video/123') ) ->writeToFile($sitemapPath);
If you want to pass the optional parameters likefamily_friendly,live, orplatform:
useSpatie\Sitemap\Sitemap;useSpatie\Sitemap\Tags\Url;useSpatie\Sitemap\Tags\Video;$options = ['family_friendly' => Video::OPTION_YES,'live' => Video::OPTION_NO];$allowOptions = ['platform' => Video::OPTION_PLATFORM_MOBILE];$denyOptions = ['restriction' =>'CA'];Sitemap::create() ->add( Url::create('https://example.com') ->addVideo('https://example.com/images/thumbnail.jpg','Video title','Video Description','https://example.com/videos/source.mp4','https://example.com/video/123',$options,$allowOptions,$denyOptions) ) ->writeToFile($sitemapPath);
You can also create a sitemap fully manual:
useCarbon\Carbon;Sitemap::create() ->add('/page1') ->add('/page2') ->add(Url::create('/page3')->setLastModificationDate(Carbon::create('2016','1','1'))) ->writeToFile($sitemapPath);
You can create a sitemap index:
useSpatie\Sitemap\SitemapIndex;SitemapIndex::create() ->add('/pages_sitemap.xml') ->add('/posts_sitemap.xml') ->writeToFile($sitemapIndexPath);
You can pass aSpatie\Sitemap\Tags\Sitemap object to manually set thelastModificationDate property.
useSpatie\Sitemap\SitemapIndex;useSpatie\Sitemap\Tags\Sitemap;SitemapIndex::create() ->add('/pages_sitemap.xml') ->add(Sitemap::create('/posts_sitemap.xml') ->setLastModificationDate(Carbon::yesterday())) ->writeToFile($sitemapIndexPath);
the generated sitemap index will look similar to this:
<?xml version="1.0" encoding="UTF-8"?><sitemapindexxmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <sitemap> <loc>http://www.example.com/pages_sitemap.xml</loc> <lastmod>2016-01-01T00:00:00+00:00</lastmod> </sitemap> <sitemap> <loc>http://www.example.com/posts_sitemap.xml</loc> <lastmod>2015-12-31T00:00:00+00:00</lastmod> </sitemap></sitemapindex>
You can call themaxTagsPerSitemap method to generate asitemap that only contains the given amount of tags
useSpatie\Sitemap\SitemapGenerator;SitemapGenerator::create('https://example.com') ->maxTagsPerSitemap(20000) ->writeToFile(public_path('sitemap.xml'));
Your site will probably be updated from time to time. In order to let your sitemap reflect these changes, you can run the generator periodically. The easiest way of doing this is to make use of Laravel's default scheduling capabilities.
You could set up an artisan command much like this one:
namespaceApp\Console\Commands;useIlluminate\Console\Command;useSpatie\Sitemap\SitemapGenerator;class GenerateSitemapextends Command{/** * The console command name. * * @var string */protected$signature ='sitemap:generate';/** * The console command description. * * @var string */protected$description ='Generate the sitemap.';/** * Execute the console command. * * @return mixed */publicfunctionhandle() {// modify this to your own needs SitemapGenerator::create(config('app.url')) ->writeToFile(public_path('sitemap.xml')); }}
That command should then be scheduled in the console kernel.
// app/Console/Kernel.phpprotectedfunctionschedule(Schedule$schedule){...$schedule->command('sitemap:generate')->daily();...}
Please seeCHANGELOG for more information what has changed recently.
First start the test server in a separate terminal session:
cd tests/server./start_server.shWith the server running you can execute the tests:
$ composertestPlease seeCONTRIBUTING for details.
If you've found a bug regarding security please mailsecurity@spatie.be instead of using the issue tracker.
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projectson our website.
Does your business depend on our contributions? Reach out and support us onPatreon.All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.
The MIT License (MIT). Please seeLicense File for more information.
About
Create and generate sitemaps with ease
Topics
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.

