Live App: Page Not Found

https://isd-public-bot-v1.glitch.me

When using UptimeRobot it returns a 404 Page Not Found error also. Can anyone advise me on how to fix this please.

It’s a discord bot, right?

You have assumed correctly.

1 Like

If the discord bot does not go offline, your fine :smiley:

It does go offline about once per day.

That’s probably UptimeRobot failing…

you should try things like awake

1 Like

The Glitch Website cannot be found which is what confuses me.

you don’t need that though.

I just added my site a few minutes ago.

In order for something to be pinged, won’t I need it?

but you could do this with express npm or in server.js if you have it

const express = require('express')
const app = express()
 
app.get('/', function (req, res) {
  res.send('OK')
})
 
app.listen(3000)
1 Like