Main static page redirects to original dynamic page
-
Hi. I’m using simply-static to create a static version of https://nandu.world/blog/.
In general settings I have ‘Relative Path’ for replacing urls, and ‘sblog’ for the path, and I’m deploying to local directory ~/public_html/sblog. Everything else is default settings.
Everything works fine (e.g, https://nandu.world/sblog/2024/06/all-good-things-must-come-to-an-end/), except (and importantly), the main page. https://nandu.world/sblog/ which simply redirects to the original dynamic page. This is sblog/index.html:
<!DOCTYPE html> <html> <head> <title>Redirecting...</title> <meta http-equiv="refresh" content="0;url=https://nandu.world/"> </head> <body> <script type="text/javascript"> window.location = "https://nandu.world/"; </script> <p>You are being redirected to <a >https://nandu.world/</a></p> </body> </html>
Any help on how to fix this would be greatly appreciated.
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.