2015-06-03 68 views
1

我想爲我的網站製作一個錯誤頁面。目前,我把它做成100%的地方。我在我的.htaccess文件.htaccess ErrorDocument 404不打開頁面

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

這3線,這就是我的error_page.html

<html> 
 
<head> 
 
</head> 
 
<body> 
 
\t error 
 
</body> 
 
</html>

如果我寫這麼想的存在,我得到的文件名作爲輸出中的URL。 如果我使用重寫URL,我會得到正確的輸出(文件,不僅是名稱)。我錯了什麼?

回答

1

ErrorDocument 404需要完整的URI相對於您的網站的根或絕對URL從http://...開始。嘗試

ErrorDocument 404 /error_page.html 
+0

Yeha它的工作,謝謝! :) – Name