PHP code example of flagrow / sitemap

1. Go to this page and download the library: Download flagrow/sitemap library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

flagrow / sitemap example snippets


return [
    new \FoF\Sitemap\Extend\RegisterResource(YourResource::class),
];

return [
    (new \FoF\Sitemap\Extend\RemoveResource(\FoF\Sitemap\Resources\Tag::class)),
];

return [
    (new \FoF\Sitemap\Extend\RegisterStaticUrl('reviews.index')),
];

return [
    (new \FoF\Sitemap\Extend\ForceCached()),
]

php flarum fof:sitemap:build
bash
composer update fof/sitemap
php flarum migrate
php flarum cache:clear

location = /sitemap.xml {
    try_files $uri $uri/ /index.php?$query_string;
}