I built a simple Drupal 8 website on my DEV box and moved it to the LIVE server.
- Copied the files on the DEV server into a tarball
- Moved these file to the LIVE server (using scp).
- Uncompressed web files into it's destination directory
(/var/www/html/newsite)
- Created the database, user and set permissions to match that on the
DEV server
- Backed up the MySQL Server database into a .sql file with mysqldump
- Imported from the .sql file into the database of the same name
- Made sure the APACHE settings pointed to the site's directory
When I navigate to the front page, it comes up.
- Images and page content displays
- Webform works and emails the account it is set for
BUT cannot navigate to any other page!
- /user = Page not found
- /[anything] = Page not found
- /?q=user = goes to the (front) page and the URL remains with the
- /?=[anything] = shows the front page with the URL remaining
Meaning I cannot log in or run (database) updates!
I've tried
- deleting the Sessions table in the database
- verify mod_rewrite is enabled in httpd (CentOS)
- verified the apache (httpd) config files match
Any help or ideas appreciated.
I don't think wiping out the website, install a Drupal site and then copy the files/database over the new one would fix anything.