create site map for my site?

Discussion in 'PHP' started by mr_share, Mar 5, 2012.

  1. #1
    Hi !
    Now, my site have 2M record. I wanto create sitemap xml submit to google or bing. But I don't know create it. Can you help me??
    Thanks
     
    mr_share, Mar 5, 2012 IP
  2. amalfra

    amalfra Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    This is what i have done :
    Created a php file which outputs header("Content-Type: text/xml;charset=iso-8859-1") ;
    simply echoed '<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.google.com/schemas/sitemap/0.84">'
    Queried from database and made links with results and echoed as follows : '<url>
    <loc>URL</loc>
    <lastmod>TIME</lastmod>
    <changefreq>always</changefreq>
    <priority>PRIORITY(<=1)</priority>
    </url>
    '
    atlast output/echoed '</urlset>' ......

    This works for me , hope that this wud be helpful
     
    amalfra, Mar 5, 2012 IP