惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
Help Net Security
Help Net Security
P
Proofpoint News Feed
J
Java Code Geeks
爱范儿
爱范儿
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Full Disclosure
Google DeepMind News
Google DeepMind News
H
Help Net Security
G
Google Developers Blog
Jina AI
Jina AI
Vercel News
Vercel News
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
Lohrmann on Cybersecurity
S
Schneier on Security
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Security Archives - TechRepublic
Security Archives - TechRepublic
阮一峰的网络日志
阮一峰的网络日志
N
News and Events Feed by Topic
GbyAI
GbyAI
B
Blog
O
OpenAI News
博客园_首页
Cisco Talos Blog
Cisco Talos Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News: Ask HN
Hacker News: Ask HN
TaoSecurity Blog
TaoSecurity Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
C
Cybersecurity and Infrastructure Security Agency CISA
Cyberwarzone
Cyberwarzone
Webroot Blog
Webroot Blog
Simon Willison's Weblog
Simon Willison's Weblog
Y
Y Combinator Blog
C
Cisco Blogs
A
Arctic Wolf
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
AI
AI
W
WeLiveSecurity
aimingoo的专栏
aimingoo的专栏
The Register - Security
The Register - Security
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale

记录生活,精彩一刻 - 路径

暂无文章

typecho后台路径更改教程
Huo · 2022-07-16 · via 记录生活,精彩一刻 - 路径

前言

typecho后台路径更改教程,以下部分内容参考了typecho官方论坛,留作记录以防不备之需。

在群里经常看到个别博友的网站后台被他人尝试爆破,大多数都是wordpress程序。

众所周知typecho默认的后台地址就是域名后面加上/admin,然而这样就避免不了被恶意破解,因为大多数typecho博主的后台默认地址都是/admin,所以为了提高网站后台的安全性,我们需要定期修改后台地址以及后台账号和密码避免被暴露。

修改步骤

通过ftp等途径访问你的服务器,修改admin文件夹的名称。 比如你想通过访问http(s)://你的域名/2022来登录后台,你就可以把admin文件夹命名成2022。

在网站根目录下找到config.inc.php文件,并修改大概在第20行的后台路径(相对路径),只要将__TYPECHO_ADMIN_DIR__常量的值改成你想要的就行了。 例如你想通过访问http(s)://你的域名/2022来登录后台,你就可以将

define('TYPECHO_ADMIN_DIR','/admin/');

用这行代码换掉:

define('TYPECHO_ADMIN_DIR','/2022/');

这样就已经成功修改了typecho后台路径了,其实也蛮简单的。

来自邹江博客分享