Skip to content

Commit

Permalink
sitemaps
Browse files Browse the repository at this point in the history
  • Loading branch information
SH20RAJ authored Mar 25, 2024
1 parent cc513f6 commit 273ca98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/sitemapsh/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function GET(req) {

for (let i = 0; i < 1000; i++) {
xml += "<sitemap>";
xml += `<loc>https://sh20raj.com/sitemapsh/${Math.floor(Math.random()*1000)}</loc>`; // Modify URL structure as needed
xml += `<loc>https://sh20raj.com/sitemapsh/${i || Math.floor(Math.random()*1000)}</loc>`; // Modify URL structure as needed
xml += "</sitemap>";

}
Expand Down

0 comments on commit 273ca98

Please sign in to comment.