New Live Deployment – Homepage and Admin Page Problem
-
I just bought a new theme and applied this to my local wordpress using AMPPS.
I already have a web host using the domain URL https://smenation.com.
I wanted to reuse the domain so I deleted the initial content of the public_html folder on the live server and then I transferred all my files from local via FileZilla.
I used this guide (https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/) in transferring my local wordpress to my web host.
Problem is, when I access https://smenation.com, I see an AMPPS page which looks like an empty file directory page. Also the when I try to acces https://smenation.com/wp-admin, I get “cannot find index.php” error.
I am under the assumption that there’s a problem with the project name with respect to directory/folder names?! Because my domain name is SMENATION and the actual wordpress site is REALTORPH?!
Here’s how my htaccess file content:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /realtorph/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /realtorph/index.php [L]
</IfModule># END WordPress
I tried removing plugins and other themes. Tried changing the home and siteurl values in the options database No luck.
Please help.
- The topic ‘New Live Deployment – Homepage and Admin Page Problem’ is closed to new replies.