
內容簡介
許多網站因為公用 wp-admin URL,常常會被管理員存取而遭到駭客攻擊,而 unoapp protect wp admin 可提供高級安全功能,以保護 wp admin。
你是否看到很多對你的 WordPress 管理員區域的攻擊?保護管理員區域免受未經授權的存取,可讓你阻擋許多常見的安全威脅。
unoapp protect wp admin 能透過允許網站管理員自訂其管理面板 URL 並依照選定 IP 存取,來幫助解決這個問題。
安裝並設定 unoapp protect wp admin 外掛後,管理員可以將 “sitename.com/wp-admin” 鏈結更改為 “sitename.com/custom-admin”。
外掛還可以基於多個 IP 地址限制管理員存取。
** 注意:在啟用此外掛前,你應留備份你的資料庫。**
如果有必要,你可以從這些備份中還原資料庫。
功能
選項:可更改自訂 wp-admin URL 為登入後及登入前的兩側 (例如:http://yourdomain.com/custom-admin)
自動更改「註冊」頁面 URL
自動更改「忘記密碼」頁面 URL
限制註冊非管理員使用者存取 wp-admin
允許管理員存取,需定義逗號分隔的多個 IP 地址
重要
1) 儲存 slug。
2) 請在 Absolute path (ABSPATH) 上方的 wp-config.php 檔案中加入下列兩行程式碼。
define(‘WP_ADMIN_DIR’, ‘office-admin’);
define(‘ADMIN_COOKIE_PATH’, SITECOOKIEPATH . WP_ADMIN_DIR);
3)
有時 permalink 設定未更新時,會發生問題。
某些時候因為權限問題、permalink 問題或其他安全性外掛,無法更新 .htaccess,在這種情況下,你可以手動更新 .htaccess。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^custom-admin/(.*) wp-admin/$1?%{QUERY_STRING} [L]
RewriteRule ^custom-admin/?$ wp-login.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
Many time sites hacked by admin access because it’s common URL for all wp-admin, this unoapp protect wp admin gives advanced security against hackers.
Are you seeing a lot of attacks on your WordPress admin area? Protecting the admin area from unauthorized access allows you to block many common security threats
unoapp protect wp admin helps solve this problem by allowing webmasters to customize their admin panel URL and access allows only selected ips.
After installed and configured unoapp protect wp admin plugin, administrator able to change the “sitename.com/wp-admin” link into “sitename.com/custom-admin”.
The plugin also restrict admin access by multiple ips based
** NOTE: You should keed backup your database before activating this plugin.**
for some reason, you find it necessary to restore your database from these backups.
Features
Option to change custom wp-admin into both sides after logged in and before login URL(i.e http://yourdomain.com/custom-admin)
Automatically change “Register” page URL
Automatically change “Lost Password” page URL
Restrict applied for registered non-admin users from wp-admin
Allow admin access by defining comma separated multiple ips
Important
1) Save the slug.
2) Please put below two lines code in your wp-config.php file above of Absolute path (ABSPATH).
define(‘WP_ADMIN_DIR’, ‘office-admin’);
define(‘ADMIN_COOKIE_PATH’, SITECOOKIEPATH . WP_ADMIN_DIR);
3)
Sometimes it’s issuing while permalink settings not updated.
Some time .htaccess not updated due to permission issue, permalink issue or some other security plugins, in that case, you can update .htaccess manually.
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^custom-admin/(.*) wp-admin/$1?%{QUERY_STRING} [L]
RewriteRule ^custom-admin/?$ wp-login.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
