login url: change from mysite.com/wp/wp-admin to mysite.com/wp-admin
-
Since my question is about something I’ve done
that seems to be working properly, but I want to
know if I’ve compromised my site security by doing it,
in the following, I’ve changed my site and subfolder names
to make my question easier to understand1. I’ve installed my wp site into a subfolder at www/wp
2. I then followed the instructions in the codex
at codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory3. Everything works as it is supposed to
My site is accessible at https://mysite.com
My login screen is accessible at https://mysite.com/wp/wp-admin
So far… so good4. Because I wanted to be able to login from https://mysite.com/wp-admin
(in the usual way), I created a subfolder in the root.
It’s called wp-admin ( it’s at www/wp-admin )5. So now, I have www/wp/all_my_wordpress_stuff
and I also have www/wp-admin6. Into www/wp-admin, I put an index.php file that
contains only the following php code:` <?php
require_once( ‘../wp/wp-admin/index.php’ );`7. Now I can login from https://mysite.com/wp-admin in the usual way
8. My Question: Is there a downside to this.
Do I risk scrambling any wordpress files?
Will I compromise the security of my site by doing this?
- The topic ‘login url: change from mysite.com/wp/wp-admin to mysite.com/wp-admin’ is closed to new replies.