Im using Laravel framework to develop my website and I also want to create sitemap. In my controller I'm redirecting 'root' request http://www.example.com/
to http://www.example.com/home
. Now which url should be defined in sitemap file?
This...
<url>
<loc>http://www.example.com/</loc>
</url>
...or this?
<url>
<loc>http://www.example.com/home</loc>
</url>