出于某种原因,CSS似乎没有在我的错误页面(here's an example of a broken link)上工作。
我不知道为什么会这样,代码与调用其他.html文档中的CSS文件的代码完全相同。
建议?
由于
塔拉
答案 0 :(得分:12)
网站在style.css
文件夹
images
文件
将您的标记更改为:
<link rel="stylesheet" href="/style.css" type="text/css" media="screen" />
答案 1 :(得分:2)
您的404页面包含404错误!文件/images/style.css
不存在。在网站的其余部分,你可以参考/styles.css
,这可能是正确的路径。
答案 2 :(得分:0)
将此代码放入.htaccess doc
ErrorDocument 404 /usual-error-document.html
#
<FilesMatch "\.(gif|jpg|png)$">
ErrorDocument 404 /404.gif
</FilesMatch>
并创建.gif文件以显示404错误。
See here for more important details if you intend to edit this code...