• Resolved luuuciano

    (@luuuciano)


    Hi there!
    We have actived the plugin, but for some odd known reason when someone goes to https://www.uepc.org.ar/conectate/ it is redirecting to: https://www.uepc.org.ar/
    So… the folder is lost and goes to the main domain
    The proper redirection sould be https://www.uepc.org.ar/conectate/

    The .htaccess file is just this:

    # BEGIN WordPress
    # Las directivas (líneas) entre <code>BEGIN WordPress</code> y <code>END WordPress</code> se generan dinámicamente, y solo se deberían modificar mediante filtros de WordPress.
    # Cualquier cambio en las directivas que hay entre esos marcadores se sobrescribirá.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /conectate/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /conectate/index.php [L]
    </IfModule>
    # END WordPress

    And the urls in the WP Options section are both https://www.uepc.org.ar/conectate/

    Any idea what to check? what can be wrong? /-:

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Alexandru Tapuleasa

    (@talextech)

    Hi,

    Sorry to hear you are having issues. Unfortunately I can’t think of any reason why this is happening ??
    WP Force SSL just redirects to the https:// version of the current URL. It does not verify or modify it in any other way.

    The actual code that does the redirect is:
    wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], 301);

    So, maybe there is another plugin altering the $_SERVER variable. You could try deactivating other plugins to see if that fixes the issue.

Viewing 1 replies (of 1 total)
  • The topic ‘URL is redirecting to main domain’ is closed to new replies.