What is No-JS Redirect Page Generator?
A meta refresh redirect is an HTML-only way to send visitors from one URL to another. It works on static hosting (GitHub Pages, Netlify, etc.) where server redirects are not available. The tag sits in the page head with a delay and destination URL.
Quick answer
Create a complete HTML page that redirects visitors to a new URL using the meta refresh tag. Works on any static hosting platform such as GitHub Pages without JavaScript or server configuration.
Limitations
- Meta refresh is not a true HTTP 301 redirect. Search engines treat it as a weaker signal. Permanent URL moves should use a server-level 301 redirect when possible.
- Some browsers and security tools allow users to disable meta refresh redirects, which leaves visitors on the redirect page without automatic forwarding.
- Meta refresh redirects have lower SEO value than server-side redirects. Use them on static hosting only when server-side redirects are not available.
How to use this tool
- Enter the target URL and redirect delay in seconds.
- Add a page title and optional body text for the redirect notice page.
- Copy the generated HTML into a file at the old URL location.
- Publish the file and test that the redirect fires correctly.
What you can use it for
- Redirect old URLs to new locations on static hosting where server redirects are not available.
- Create a short-link page that forwards visitors to a destination URL.
- Move a GitHub Pages site to a new domain with a soft redirect page at each old URL.