Viewing 4 replies - 1 through 4 (of 4 total)
  • If your WordPress site is constantly redirecting to the login page, it could be due to a number of reasons. Here are a few things you can check:

    1. .htaccess File: The .htaccess file is a configuration file used by Apache-based servers. If this file is corrupted or misconfigured, it can cause redirection issues. You can try renaming your current .htaccess file to something like .htaccess_old and creating a new .htaccess file with the default WordPress .htaccess rules:
      # BEGIN WordPress 
      <IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteBase /
      RewriteRule ^index\.php$ - [L]
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.php [L]
      </IfModule> 
      # END WordPress
    2. Plugins: A plugin could be causing the issue. To check if this is the case, you can disable all your plugins and see if the issue persists. If the issue is resolved, you can enable your plugins one by one to find out which one is causing the problem.
    3. Themes: Your theme could be causing the issue. To check if this is the case, you can switch to a default WordPress theme and see if the issue persists.
    4. Database: There could be an issue with your site’s URL settings in the database. You can check this by logging into your database (usually through phpMyAdmin), navigating to the wp_options table, and checking the siteurl and home options. These should both be set to your site’s URL (https://worldcalling4me.com/).
    5. Server Configuration: If none of the above solutions work, there could be a server configuration issue. You may need to contact your hosting provider for assistance.

    Remember to backup your site before making any changes.

    Thread Starter tfarzan007

    (@tfarzan007)

    Mr @apeatling ,
    Thank you. I have already tried the suggested thing but those do not work.

    For your imformation it work for moble as I can access site from mobile but does not wor for laptop or pc.

    I suspect it is a configuration on your computer then. Try different browsers, or try connecting to a different network to start with.

    Thread Starter tfarzan007

    (@tfarzan007)

    Mr @apeatling ,

    Thank you. I already try it but those do not work.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Home page re direct to wp-login.php’ is closed to new replies.