我正在尝试将语言添加到我的sitemap.xml文件中,但是我收到“未定义链接上的名称空间前缀xhtml”错误。我该如何定义它?我在谷歌上找不到任何有用的东西。
这是文件:
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
<url>
<loc>https://www.leepio.dk/</loc>
</urlset>
答案 0 :(得分:13)
这样就可以了。
更改强>
class CSPPhotoBrowserViewVC: UIViewController, CSPFamilyFeedVCDelegate{
...
func getImage(image: String) {
print(1)
}
...}
<强>解释强>
定义给定的<urlset
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
http://www.w3.org/1999/xhtml http://www.w3.org/2002/08/xhtml/xhtml1-strict.xsd"
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
>
。将xmlns:xhtml
映射到存储架构的位置xmlns:xhtml
。