Cannot find any of the pages after moving site

Permalink 1 user found helpful
I moved the site to another server and the pages cannot be found including the Login page. The .htaccess file is not present and the cache is cleared. Is there some place where the path is stored other than .htaccess or a cache entry?

Todd

rtcary
 
Gondwana replied on at Permalink Reply
Gondwana
Did you have pretty URLs enabled?
rtcary replied on at Permalink Reply
rtcary
I cannot log in since the URL to the log in page is incorrect:

The requested URL /greaterbendrotary/login was not found on this server.

Todd
rtcary replied on at Permalink Reply
rtcary
I found this in the forum and it worked:
I had the exact same issue. I downloaded a copy of my 5.7.5.2 c5 site onto XAMPP, and after clearing out my htaccess file, modifying my generated overrides file like this post suggests, I was still having the problem. What I had to do is, add my cannonical URL to the generated overrides file and set the redirect to true like this:
'seo' => array(
'canonical_url' => 'http://localhost/myurl',
'canonical_ssl_url' => '',
'redirect_to_canonical_url' => 1,
'url_rewriting' => 0,
'tracking' => array(
'code' => '<script>
Then i was able to log in and click on links.
I also changed my cache settings and cleared my cache.


I'm not sure what is meant by "modifying my generated overrides file like this post suggests,"

Todd
Gondwana replied on at Permalink Reply
Gondwana
Since 'index.php' isn't mentioned in that URL, I still suspect a 'pretty URLs' issue.
rtcary replied on at Permalink Reply
rtcary
The above allowed me to get in and fix the Pretty URL's. Very helpful.