apache 2.4自定义错误响应不起作用

时间:2019-03-02 13:54:45

标签: apache bitnami

我正在尝试为我的网站设置一个未找到的自定义404错误页面。我看过很多教程,并在https://httpd.apache.org/docs/2.4/custom-error.html处阅读了文档。

当我给域输入无效的URL时,这是我得到的默认404页面。

Not Found
The requested URL /notreal was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

这是我在httpd.conf文件中允许覆盖的内容:

# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/opt/bitnami/apache2/htdocs"
<Directory "/opt/bitnami/apache2/htdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

这是我的.htaccess文件:

Options -Indexes

ErrorDocument 404 /error/404.html

我在/opt/bitnami/apache2/htdocs中有.htaccess文件,在/opt/bitnami/apache2/htdocs/error中有我想与自定义JS和CSS输出的自定义404.html页面。

编辑:

Bitnami配置文件:

# Default Virtual Host configuration.

<IfVersion < 2.3 >
  NameVirtualHost *:80
  NameVirtualHost *:443
</IfVersion>

<VirtualHost _default_:80>
  DocumentRoot "/opt/bitnami/apache2/htdocs"
  <Directory "/opt/bitnami/apache2/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride All
    <IfVersion < 2.3 >
      Order allow,deny                          
      Allow from all
    </IfVersion>
    <IfVersion >= 2.3 >
      Require all granted
    </IfVersion>
  </Directory>

  # Error Documents
  ErrorDocument 503 /503.html
  ErrorDocument 404 /error/404.html

  # Bitnami applications installed with a prefix URL (default)
  Include "/opt/bitnami/apache2/conf/bitnami/bitnami-apps-prefix.conf"
</VirtualHost>

# Default SSL Virtual Host configuration.

<IfModule !ssl_module>
  LoadModule ssl_module modules/mod_ssl.so
</IfModule>

Listen 443
SSLProtocol all -SSLv2 -SSLv3
SSLHonorCipherOrder on
SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !EDH !RC4"
SSLPassPhraseDialog  builtin
SSLSessionCache "shmcb:/opt/bitnami/apache2/logs/ssl_scache(512000)"
SSLSessionCacheTimeout  300

<VirtualHost _default_:443>
  DocumentRoot "/opt/bitnami/apache2/htdocs"
  SSLEngine on
SSLCertificateFile "/opt/bitnami/apache2/conf/server.crt"
SSLCertificateKeyFile "/opt/bitnami/apache2/conf/server.key"

  <Directory "/opt/bitnami/apache2/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride All
    <IfVersion < 2.3 >
      Order allow,deny                          
      Allow from all
    </IfVersion>
    <IfVersion >= 2.3 >
      Require all granted
    </IfVersion>
  </Directory>

  # Error Documents
  ErrorDocument 503 /503.html
  ErrorDocument 404 /error/404.html

  # Bitnami applications installed with a prefix URL (default)
  Include "/opt/bitnami/apache2/conf/bitnami/bitnami-apps-prefix.conf"
</VirtualHost>

# Bitnami applications that uses virtual host configuration
Include "/opt/bitnami/apache2/conf/bitnami/bitnami-apps-vhosts.conf"

1 个答案:

答案 0 :(得分:0)

我的页面404可以正常工作。因此,我阅读了文档,并说该页面必须位于根目录中。 public function addConstraints() { if (static::$constraints) { $foreignKey = $this->getForeignKeyName(); $parentKeyValue = $this->getParentKey(); //If the foreign key is an array (multi-column relationship), we adjust the query. if (is_array($this->foreignKey)) { foreach ($this->foreignKey as $index => $key) { /*list(, $key) = explode('.', $key); $fullKey = $this->getRelated()->getTable().'.'.$key;*/ $keyPortions = explode('.', $key); if(count($keyPortions) === 2) $fullKey = $this->getRelated()->getTable() . '.' . $key; else $fullKey = $key; $this->query->where($fullKey, '=', $parentKeyValue[$index]); $this->query->whereNotNull($fullKey); } } else { $fullKey = $this->getRelated()->getTable().'.'.$foreignKey; $this->query->where($fullKey, '=', $parentKeyValue); $this->query->whereNotNull($fullKey); } } }

它可以在那里,但是对于我的问题,我有一个指向该域的文件夹。 example.com

并在该文件夹/opt/bitnami/apache2/htdocs中,您需要放置/opt/bitnami/apache2/htdocs/domain文档和/error文件。