-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from deji-ice/feature/improve-seo
Feature/improve seo
- Loading branch information
Showing
4 changed files
with
318 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# robots.txt for https://med-space.vercel.app/ | ||
|
||
# Allow all bots to crawl important pages | ||
User-agent: * | ||
Allow: / # Allow crawling of the homepage | ||
Allow: /about | ||
Disallow: /* # Disallow crawling of all other pages | ||
Allow: / # Allow crawling of the homepage | ||
Allow: /about # Allow crawling of the about page | ||
Allow: /registerOPD # Allow crawling of the registration form | ||
Allow: /success # Allow crawling of the success page | ||
Allow: /hospitals # Allow crawling of the hospitals list | ||
Allow: /services # Allow crawling of the service list | ||
|
||
# Sitemap declaration (optional) | ||
# Sitemap: https://med-space.vercel.app/sitemap.xml | ||
# Disallow crawling of sensitive areas | ||
Disallow: /* #disallow to all other pages | ||
|
||
# End of file | ||
# Link to your sitemap for better crawling | ||
Sitemap: https://med-space.vercel.app/sitemap.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
<url> | ||
<loc>https://med-space.vercel.app/</loc> | ||
<lastmod>2024-10-04</lastmod> | ||
<changefreq>daily</changefreq> | ||
<priority>1.0</priority> | ||
</url> | ||
<url> | ||
<loc>https://medi-connect-in.netlify.app/services</loc> | ||
<lastmod>2024-10-01</lastmod> | ||
<changefreq>monthly</changefreq> | ||
<priority>0.9</priority> | ||
</url> | ||
<url> | ||
<loc>https://med-space.vercel.app/about</loc> | ||
<lastmod>2024-10-01</lastmod> | ||
<changefreq>monthly</changefreq> | ||
<priority>0.8</priority> | ||
</url> | ||
<url> | ||
<loc>https://med-space.vercel.app/registerOPD</loc> | ||
<lastmod>2024-10-01</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.7</priority> | ||
</url> | ||
<url> | ||
<loc>https://med-space.vercel.app/success</loc> | ||
<lastmod>2024-10-01</lastmod> | ||
<changefreq>monthly</changefreq> | ||
<priority>0.6</priority> | ||
</url> | ||
<url> | ||
<loc>https://med-space.vercel.app/hospitals</loc> | ||
<lastmod>2024-10-01</lastmod> | ||
<changefreq>monthly</changefreq> | ||
<priority>0.7</priority> | ||
</url> | ||
<url> | ||
</urlset> |
Oops, something went wrong.