index.php redirects to itself
-
In the static files generated by Simply Static index.php simply contains HTML that redirects the browser to the homepage of my site. This leads to an infinite loop of redirects.
<!DOCTYPE html> <html> <head> <title>Weiterleiten …</title> <meta http-equiv="refresh" content="0;url={URL of my homepage}"> </head> <body> <script type="text/javascript"> window.location = "{URL of my homepage}"; </script> <p>Du wirst auf <a href="{URL of my homepage}">{URL of my homepage}</a> weitergeleitet</p> </body> </html>
I tried setting a different URL in the settings before generating the files, but that has no effect, either.
What am I missing?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘index.php redirects to itself’ is closed to new replies.