BRAHMA TECHNOLAB

Change Your WordPress Admin Url Without Plugin

Let’s have a quick walk through regarding changing Admin URL with WordPress. As we all know that WordPress provides us less security compare to other CMS and Frameworks. So, in this case, to protect our website from hackers we need to perform several processes like protecting admin area, give fewer primitives to database etc.

If you have a WordPress site, then it is very easy to access admin URL of the login page. A Person who has basic knowledge of WordPress is known that by /wp-admin you can access admin page, or by /wp-login.php you can access the login page.
For the security purpose, we need to change Admin URL as well as Login page URL so that it is not easily accessible to others.

There are several plugins available in the market by which we can protect our admin area. Which are as follows:

But, Here I am going to explain to you how we can achieve this using custom code:

You need to follow below three steps to change admin URL:

1) Add constants to wp-config.php file

				
					define('WP_ADMIN_DIR', 'secret-folder');
define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . WP_ADMIN_DIR);
				
			

2) Add below snippet in function.php file of your active theme

				
					add_filter('site_url', 'wpadmin_filter', 10, 3);
function wpadmin_filter( $url, $path, $orig_scheme ) {
    $old = array( "/(wp-admin)/");
    $admin_dir = WP_ADMIN_DIR;
       $new = array($admin_dir);
    return preg_replace( $old, $new, $url, 1);
}
				
			

3) Add below line to .htaccess file

				
					RewriteRule ^secret-folder/(.*) wp-admin/$1?%{QUERY_STRING} [L]
				
			

Require a solution to your software problems?

Want to get in touch?

Have an idea?

Do you need some help with it? Brahma would love to help you! Kindly click on ‘Contact Us’ to reach us and share your query.

LET’S DISCUSS YOUR PROJECT

2 responses to “Change Your WordPress Admin Url Without Plugin”

  1. I see You’re in point of fact a excellent webmaster.
    This website loading speed is amazing. It seems that you are doing any unique trick.
    Moreover, the contents are masterpiece. you’ve performed a great job in this subject!

Leave a Reply

Your email address will not be published. Required fields are marked *

Snehal

Typically replies within a day

Hello, Welcome to BRAHMA TECHNOLAB. Please click below button for chatting us through Skype.