Because anytime a guest types in the URL site.com/admin he/she gets redirected to the sign-in page
And if a logged in member does that, the page just refreshes.
Anyway, you can change the route here: ow_system_plugins/admin/init.php
You need to change admin word to whatever you like.
RewriteCond %{REMOTE_HOST} !^77.215.8.86
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^.*admin.*$
RewriteRule (.*) http://site.com/index [R=302,L]
We do not recommend you to change htaccess file:
1. because you can break some software functionality with these conditions and rules
2. all changes will be overwritten while next update, which is why it is better to do that via php plugin which will have 301 permanent redirect
Marcus, I'm going to mark this thread as Solved