Skip to content

Instantly share code, notes, and snippets.

@adinata-id
Created December 4, 2021 08:20
Show Gist options
  • Save adinata-id/26162c656ef72cb7cf8b6927e18a06af to your computer and use it in GitHub Desktop.
Save adinata-id/26162c656ef72cb7cf8b6927e18a06af to your computer and use it in GitHub Desktop.
Return Sitemap XML File Using Laravel
Route::get('/sitemap.xml', function () {
$content = Storage::disk('digitalocean')->url('sitemap.xml');
return response(file_get_contents($content), 200, [
'Content-Type' => 'application/xml'
]);
});
@adinata-id
Copy link
Author

to show this output xml
open browser and enter
https://yourdomain/sitemap.xml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment