Make changes below for a professional touch.
1️⃣ Separation of Concerns
Everything has a clear place.
/
index.html
/about
index.html
/services
index.html
/expertise
index.html
/contact
index.html
/css
/js
/images
robots.txt
sitemap.xml
2️⃣ Navbar Link Update
When we move pages into folders, we update navigation links.
Example:
a href="services.html" to
a href="/services"
This signals good engineering discipline.
3️⃣ Update Canonical URLs
Example inside /about/index.html:
search "canonical"
=============
Update Sitemap
Example:
vimaltech.dev/about
instead of
vimaltech.dev/about.html
4️⃣ What Actually Triggers Google Re-crawl
Google re-crawls when it sees:
• sitemap updates
• internal links
• backlinks
• content changes
• periodic crawling
So your site will refresh naturally.
5️⃣ Pro Tips for Developer Portfolios
The best way to trigger recrawls naturally is to update your sitemap date.
- Update date in sitemap.xml
- lastmod: 2026-03-09
- When you make major updates, change it to:
- lastmod: 2026-03-18
Google notices this and prioritises crawling.
6️⃣ Final Result
Our repo will look like a clean, professional frontend project rather than a simple static page collection.
✔ cleaner URLs
✔ better SEO
✔ scalable structure
✔ professional GitHub repo
✔ easier maintenance
7️⃣ SEO Tips
When we SHOULD Request Indexing
Google Search Console uses Request Indexing if:
New page
Major SEO rewrite
New sitemap URLs
Then request indexing for that new URL in Google Search Console.
Make changes below for a professional touch.
1️⃣ Separation of Concerns
Everything has a clear place.
/
index.html
/about
index.html
/services
index.html
/expertise
index.html
/contact
index.html
/css
/js
/images
robots.txt
sitemap.xml
2️⃣ Navbar Link Update
When we move pages into folders, we update navigation links.
Example:
a href="services.html" to
a href="/services"
This signals good engineering discipline.
3️⃣ Update Canonical URLs
Example inside /about/index.html:
search "canonical"
=============
Update Sitemap
Example:
vimaltech.dev/about
instead of
vimaltech.dev/about.html
4️⃣ What Actually Triggers Google Re-crawl
Google re-crawls when it sees:
• sitemap updates
• internal links
• backlinks
• content changes
• periodic crawling
So your site will refresh naturally.
5️⃣ Pro Tips for Developer Portfolios
The best way to trigger recrawls naturally is to update your sitemap date.
Google notices this and prioritises crawling.
6️⃣ Final Result
Our repo will look like a clean, professional frontend project rather than a simple static page collection.
✔ cleaner URLs
✔ better SEO
✔ scalable structure
✔ professional GitHub repo
✔ easier maintenance
7️⃣ SEO Tips
When we SHOULD Request Indexing
Google Search Console uses Request Indexing if:
New page
Major SEO rewrite
New sitemap URLs
Then request indexing for that new URL in Google Search Console.