TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do you get search engines to reindex your site?

2 pointsby emilepetroneover 13 years ago
I changed the URL structure for one of my Django sites so every day I get error messages as spiders &#38; bots try and crawl the old pages.<p>Is there a way you can proactively alert Google, Yahoo, etc that a reindex is needed?

2 comments

davemacover 13 years ago
For Google, you can use Google Webmaster Tools and feed it a new sitemap
评论 #3016230 未加载
mattadamsover 13 years ago
You probably want to be looking into automatically generated XML sitemap (<a href="http://en.wikipedia.org/wiki/Sitemap" rel="nofollow">http://en.wikipedia.org/wiki/Sitemap</a>). Since the sitemap should always be available at say, /sitemap.xml you shouldn't need to resubmit it. Most modern search engines will check it every so often.<p>You might also consider doing redirects from your old pages to your new ones. I don't know if that is feasible given your restructuring.