Rename wp-admin without renaming it (.htaccess rewrite)
-
I know it is possible to rename wp-admin but requires so many modifications of calls to it its not a realistic option.
I want to use rewrite rules to make say /dashboard goto the wp-admin directory without the user knowing on the server it’s actually called wp-admin. But I am not much for knowing .htaccess stuff and would like some help if someone has a rewrite rule I could use for this.
ie the user would goto mywpinstall.com/dashboard and really be acessing mywpinstall.com/wp-admin without knowing it. I know this negates a reason many of the posts here ask about renaming the directory, which is security though obscurity, but all I am looking to do it customize the experience for the wp users.
EDIT: I have attempted to do it, but I am clearly doing it wrong because it is not working, my .htaccess code:
RewriteEngine on RewriteRule ^dashboard/ /wp-admin/ [NC]
- The topic ‘Rename wp-admin without renaming it (.htaccess rewrite)’ is closed to new replies.