• Hey,

    I recently changed the IP of my wordpress server (on EC2).

    since that action i can’t reach my wp-admin page.

    i getting 404 error: The requested URL /wp-admin was not found on this server.

    anyone have advise please?

    Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    What’s in your .htaccess file?

    Thread Starter mork8855

    (@mork8855)

    Hey!

    I replaced the file earlier and still cannot access wp-admin.

    [root@ip-172-31-47-140 wordpress]# cat .htaccess
    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteRule ^index.php$ – [L]

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Try this instead:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    # END WordPress
    Thread Starter mork8855

    (@mork8855)

    Still getting 404
    Not Found
    The requested URL /wp-admin was not found on this server.

    Thanks.

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Are you using Apache? If so, in the virtual host setting for your site, add this:

    <Directory /path/to/wordpress/here>
       AllowOverride All
    </Directory>

    then restart Apache.

    Thread Starter mork8855

    (@mork8855)

    i edited the httpd.conf, but sill not work..

    Thread Starter mork8855

    (@mork8855)

    Do you think that if i will start a new server, the themes that i payed for will be available and licensed in the new site? for example i use Elementor theme.

    Thanks,
    Mor.

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    I don’t know the terms of your licenses. But it will probably all work.

    Thread Starter mork8855

    (@mork8855)

    Thank you!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘cannot accsess – wp-admin was not found on this server’ is closed to new replies.