Php - Mobile url annotation in desktop sitemaps, Mobile url annotation

Mobile url annotation in desktop sitemaps


Follow the below given annotation to showcase the mobile website url of the same desktop page
 <?xml version="1.0" encoding="UTF-8"?>
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
 xmlns:xhtml="http://www.w3.org/1999/xhtml">
 <url>
 <loc>http://www.example.com/page-1/</loc>
 <xhtml:link
 rel="alternate"
 media="only screen and (max-width: 640px)"
 href="http://m.example.com/page-1" />
 </url>
 </urlset> 
Similarly, rel="canonical" tag on the mobile URL should still be added to the mobile page's HTML.

The topic on Php - Mobile url annotation in desktop sitemaps is posted by - Math

Hope you have enjoyed, Php - Mobile url annotation in desktop sitemapsThanks for your time

Tech Bluff