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
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