.htaccess ErrorDocument 404不要打开页面

时间:2015-06-03 21:45:07

标签: php .htaccess mod-rewrite

我想为我的网站制作一个错误页面。目前我100%本地化。我的.htaccess文件中有3行

ErrorDocument 404 error_page.html
RewriteEngine on
RewriteRule ^404 error_page.html

那就是我的error_page.html

<html>
<head>
</head>
<body>
	error
</body>
</html>

如果我写了一个不存在的网址,我会将文件名作为输出。 如果我使用重写URL我得到正确的输出(文件,不仅是名称)。我错了什么?

1 个答案:

答案 0 :(得分:1)

ErrorDocument 404需要来自您的网站根目录的完整URI或从http://...开始的绝对网址。尝试

ErrorDocument 404 /error_page.html