Apache网站访问不存在的页面时自动跳转到自定义页面(比如404错误页)
时间:2025-3-22 22:19 作者:Anglei 分类: WEB应用
通过 Apache 的 .htaccess 文件配置
创建自定义404页面
在网站根目录(如 /var/www/html)新建一个HTML文件,例如 custom_404.html,内容可以包含:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 页面未找到</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f2f5;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
text-align: center;
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
width: 90%;
max-width: 500px;
}
h1 {
color: #1a1a1a;
margin-bottom: 1rem;
}
p {
color: #666;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.button {
display: inline-block;
padding: 0.8rem 1.5rem;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #0056b3;
}
@media (max-width: 480px) {
.container {
padding: 1.5rem;
width: 95%;
}
}
</style>
</head>
<body>
<div class="container">
<h1>404 - 页面未找到</h1>
<p>您访问的页面不存在或已被移动。</p>
<a href="/" class="button">返回首页</a>
</div>
</body>
</html>
编辑 .htaccess 文件
在网站根目录找到或新建 .htaccess 文件,添加以下代码:
ErrorDocument 404 /custom_404.html
这行代码会告诉Apache,当发生404错误时,返回你指定的页面。
测试配置
访问一个不存在的URL(如 www.xxx.cn/xxx ), 检查是否跳转到自定义页面。

推荐阅读:
![]() 路过(0) |
![]() 雷人(0) |
![]() 握手(1) |
![]() 鲜花(0) |
![]() 鸡蛋(0) |