Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • @vbk100

    Sure. In my case, at first the .htaccess file was started WordPress rewrite rules.

    # BEGIN WordPress
    RewriteEngine On

    # END WordPress

    and then, next stealth login rewrite rules.

    # STEALTH-LOGIN
    RewriteRule ^logout wp-login.php?

    # END STEALTH-LOGIN

    So, I rewrited those order stealth login rules first.

    # STEALTH-LOGIN
    RewriteRule ^logout wp-login.php?

    # END STEALTH-LOGIN

    and then,

    # BEGIN WordPress
    RewriteEngine On

    # END WordPress

    That’s it.
    I only changed rules order.

    I fixed it, thanks to CesarKensen. I owe to you my idea how to fix it.
    I rewrite my .htaccess file.
    From ” # STEALTH-LOGIN ” to “# END STEALTH-LOGIN” first.
    That’s it.

    Any rules before stealth login, it didn’t work for me.
    Please try it!

Viewing 2 replies - 1 through 2 (of 2 total)