使用插件更换WordPress Admin URL

一般情况下,WordPress生成一个缺省的admin URL http://www.yoursite.com/wp-login.php。由于这个链接众所周知,如果你泄露了密码或者在不止一处使用了同一个密码,未获授权的陌生人很容易就可以访问你的WordPress管理面板,这对你的站点是有害的并且使得你的站点容易被入侵。

管理面板的安全性是WordPress安全性的重要组成部分。为了确保管理面板的安全,我们可以更换缺省URL并创建一个自定义的URL来登录,登出,管理和注册我们的站点。

显然,最佳并且最容易的修改URL的方式是使用插件。在下面,我们只介绍几个最佳的URL自定义管理插件,然后我们以Lockdown WP Admin为例来展示更换WordPress 管理URL的详细步骤。

更换WordPress管理URL的最佳插件

在大多数情况下,使用一个合适的插件是自定义WordPress站点最简单的方式,尤其是对技术知识不多的用户来说。我们也可以使用一个简单的插件很容易地变更缺省的WordPress管理URL。这里是修改URL排名前3的插件,你可以在管理面板中进行试用。

  • Lockdown WP Admin: 这是一个有用的WordPress插件可以对入侵者隐藏管理模块和登录屏幕。如果一个没有登录你的站点的用户想要访问管理面板(/wp-admin/),此插件将URL隐藏并转向一个404页面。此外 ...

继续阅读

科学可视化 vs. 信息可视化

Abstract (摘要)

While Scientific Visualization techniques are used for the clarification of well-known phenomena, Information Visualization techniques are used for searching for interesting phenomena. There are therefore important differences between the two fields of research. The two fields of research ...

继续阅读

TopCoder SRM 561 ICPCBalloons

Topcoder Single Round Match 561

Problem Statement
You are organizing a subregional ACM ICPC contest. The problemset at the contest will consist of M problems. According to an ACM ICPC tradition, when a team solves a problem, it gets awarded ...

继续阅读

C语言实现循环冗余码CRC12

CRC是一种常用的错误侦测编码,例如,字符串"test"的CRC12余数计算结果为:

CRC12 remainder of str "test" is 679
The binary string is:
01110100 01100101 01110011 01110100 011001111001

计算CRC12的C语言代码如下:


/**
CRC12
*/
#include <cstring>
#include <stdlib.h>
#include <cstdio>
#include <iostream>
#define CHAR_SIZE 8
#define CRC_SIZE 12
using namespace ...

继续阅读