Publishing my podcast on Google Podcasts
Google discontinued the "Google Podcasts" service in 2024.
Google Podcasts works differently than most podcast directories. Google uses the same mechanism to find podcasts as it does to websites: it uses so-called crawlers, which search the Internet and classify the content accordingly.
So that your podcast is found and indexed by Google, you need a homepage with the HTML element "link" with the URL to your RSS-Feed. Read on to find out what you need to do for it.
Podigee blogs
If you use the podigee blog, you do not need to do anything anymore. The link element is set automatically.
External websites
Podigee allows you to use your external website for your podcast. For your podcast to be correctly indexed by Google, you must set the HTML element "link" in your website's <head> area.
Otherwise, you can create the link manually following this example:
<html> <head> <link rel="alternate" type="application/rss+xml" title="My Podcast" href="https://mypodcast.podigee.io/feed/mp3"/> <title>My Podcast</title> </head> <body> <h1>My Podcast</h1> <p>Hey! This is the website of my podcast!</p> </body> </html>
You should only have one link element like this on your homepage.