Change URL and redirect

Hi,

I run an app at https://create-a-jazzword.glitch.me/ but I would like to change the url to https://create-a-jazz-password.glitch.me/

But when I change the URL, everyone who was using the old one (backlinks, bookmarks and so on) will run into a 404 error.

So I would like to ask if I can keep the old url and add a 302 redirect to a new url.

Thanks!

So I would like to ask if I can keep the old url and add a 302 redirect to a new url.

No, the URL of the project is the permalink.

You can work with 2 versions, a prod one and dev one for example, and switch the name of the current dev one to turn it into a prod, for example.

You can also use a custom domain name which is probably the easiest for your site visitors, but don’t forget to change the name of the custom domain if you switch or remix to another instance/project.

Wait, actually you could redirect in the code of your first project:

<script>
 location.replace("https://redirect.glitch.foo")
</script>

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.