https://www.davidiq.com/index.php
When I log in, I get redirected to the above page, which results in a "The requested page cannot be found" error.
The requested page cannot be found
Re: The requested page cannot be found
Where are you logging in from?
- [Dimetrodon]
- Posts: 8
- Joined: Wed Aug 31, 2022 7:54 pm
Re: The requested page cannot be found
From the homepage: https://www.davidiq.com and pressing the "login" button to type my information in.
- [Dimetrodon]
- Posts: 8
- Joined: Wed Aug 31, 2022 7:54 pm
Re: The requested page cannot be found
Yeah, this is what I get. Probably because index.php is in the support subdirectory, not in the root.
An "index.php" in the root that redirects to a desired page probably would fix this. Example:
Which of course would redirect to your services page, though as you know, it can be changed to anything.
An "index.php" in the root that redirects to a desired page probably would fix this. Example:
Code: Select all
<?php header("Location: https://www.davidiq.com/services"); ?>Re: The requested page cannot be found
This has finally been fixed. FYI there's always been an index.php page in the site root. It just wasn't handling a certain scenario properly.