Add dynamic pages to Google Search
-
Hey all, I have created a blog where all the posts are stored in MS SQL. I have created user-friendly url for each of the post using ASP Routing. My question is, how do I submit the dynamic pages urls to google? Do I have to dynamically add the post url to the Sitemap and submit it to google when there is a new post? Thank you in advance
-
Hey all, I have created a blog where all the posts are stored in MS SQL. I have created user-friendly url for each of the post using ASP Routing. My question is, how do I submit the dynamic pages urls to google? Do I have to dynamically add the post url to the Sitemap and submit it to google when there is a new post? Thank you in advance
I tend to use a dynamic sitemap file generated by a generic handler (
sitemap.ashx
). Google re-reads the file on a regular basis, so there's no need to re-submit it.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
I tend to use a dynamic sitemap file generated by a generic handler (
sitemap.ashx
). Google re-reads the file on a regular basis, so there's no need to re-submit it.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Thank you for you response :) So I only have so submit it once so that google knows about the handler, correct?
That's been my experience using their Webmaster Tools[^]. It's also a good idea to add the link to your
robots.txt
file, so that other search engines will pick it up:Sitemap: http://your.domain.com/sitemap.ashx
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
That's been my experience using their Webmaster Tools[^]. It's also a good idea to add the link to your
robots.txt
file, so that other search engines will pick it up:Sitemap: http://your.domain.com/sitemap.ashx
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer