【问题标题】:CodeIgniter Sitemap problem view not in xml formatCodeIgniter Sitemap 问题视图不是 xml 格式
【发布时间】:2022-01-15 20:01:09
【问题描述】:

有些不对劲。 CodeIgniter... 输出不是 xml 格式。一个小时前刚刚发现我可以看到站点地图 php 页面 businessclaud.co.ke/sitemap 但它不是 xml 格式...看看并请帮助

我有一个名为 Sitemap.php 的控制器

<?php
class Sitemap extends Controller {
    public function __construct(){
    require APPROOT.'/views/inc/load_models.php';
}

public function index(){
    $this->view('sitemap/index');
}

}

还创建了视图index.php并上传到如下所示的站点

<?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://businessclaud.co.ke/</loc>
  <lastmod>2021-06-19T02:02:46+00:00</lastmod>
  <changefreq>daily</changefreq>
  <priority>1.00</priority>
</url>
<url>
  <loc>https://businessclaud.co.ke/admin/users/login</loc>
  <lastmod>2021-06-19T02:02:46+00:00</lastmod>
  <changefreq>daily</changefreq>
  <priority>0.80</priority>
</url>

enter link description here

有些不对劲。一个小时前刚发现我可以看到 php xml 页面businessclaud.co.ke/sitemap 但它不是 xml 格式...看看并请帮助

【问题讨论】:

    标签: codeigniter model-view-controller sitemap


    【解决方案1】:

    我发现,由于站点地图视图是 php 格式,即 index.php,您需要做的是告诉浏览器将其视为 xml。这是通过定义标题 header("Content-type: text/xml"); 来完成的。

    如果您遇到此类问题,请转到您的控制器并添加此行 header("Content-type: text/xml");

    <?php
    class Sitemap extends Controller {
        public function __construct(){
    //  require APPROOT.'/views/inc/load_models.php';
    }
    
    public function index(){
        header("Content-type: text/xml");
        $this->view('sitemap/index');
    }
    
    }

    就这样,site 已准备好提交站点地图。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-12-05
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多