Today, We want to share with you PHP Codeigniter Creating Dynamic XML Sitemaps.In this post we will show you codeigniter sitemap xml, hear for codeigniter google sitemap generator we will give you demo and example for implement.In this post, we will learn about How to Create Dynamic Sitemap in PHP Codeigniter? with an example.
PHP Codeigniter Generate Dynamic XML Sitemap Example
Codeigniter Create Dynamic Sitemap using PHP sitemap Example
Step 1: Create Route
codeigniter setting : application/config/routes.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); $route['default_controller'] = 'welcome'; $route['404_override'] = ''; $route['translate_uri_dashes'] = FALSE; $route['sitemap\.xml'] = "Sitemap/index";
Step 2: Create Sitemap Controller
Codeigniter Generate Dynamic XML Sitemap Example path_ : application/controllers/Sitemap.php
load->database(); $query = $this->db->get("posts"); $data['posts'] = $query->result(); $this->load->view('sitemap', $data); } }
Step 3: Create XML File
E-junkie: Sell digital downloads online
E-junkie Provides a Copy-paste buy-now, and cart buttons for selling downloads, codes and tangible products on any website, blog, social media, email and messenger!
Also see:
application/views/sitemap.php
<?php echo'' ?> 1.0 daily <!-- Sitemap --> id ?> 0.5 daily
You can run simple on following URL on your Browser:
http://localhost:8000/sitemap.xml
jQuery 15 Powerful Tips and Tricks for Developers and Web Designer
Read :
Summary
You can also read about AngularJS, ASP.NET, VueJs, PHP.
I hope you get an idea about PHP Codeigniter Creating Dynamic XML Sitemaps.
I would like to have feedback on my Infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.