0

以下是我的 htaccess 代码,请告知我做错了什么。谢谢你。我正在尝试添加错误文档。404 位于站点的根目录中。

ErrorDocument 404 /404.html

<FilesMatch "\.(jpg|jpeg|png|gif|swf|ico|css|js)$">
    Header set Cache-Control "max-age=604800, public"
</FilesMatch>
AddDefaultCharset UTF-8
AddLanguage en-US .html .htm .css .js
#Header unset ETag
FileETag none
<IfModule mod_headers.c>
  <FilesMatch "\.(js|css|xml|gz)$">
    Header append Vary: Accept-Encoding
  </FilesMatch>
</IfModule>
<IfModule mod_mime.c>
    AddType application/javascript          js
    AddType application/vnd.ms-fontobject   eot
    AddType application/x-font-ttf          ttf ttc
    AddType font/opentype                   otf
    AddType application/x-font-woff         woff
    AddType image/svg+xml                   svg svgz 
    AddEncoding gzip                        svgz
</Ifmodule>
#Gzip
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x- javascript application/javascript
AddOutputFilterByType DEFLATE image/x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype
</ifmodule>
#End Gzip
4

2 回答 2

1

在您的 .htaccess 中使用这些代码来捕获 404 错误页面。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /404.html [L]
</IfModule>

现在您的所有 404 请求都将转到 /404.html。您还可以使用 /404.php 进行更动态的编码。还要确保在您的 apache 中启用了重写模块。

于 2014-02-02T08:26:41.153 回答
0

请使用指向 404.html 错误页面的直接链接。错误文档 404 http://example.com/404.php

于 2016-08-05T20:12:35.147 回答