Symfony - 使用Apache ErrorDocument

时间:2018-03-16 14:40:06

标签: apache symfony errordocument

我想用apache ErrorDocument替换symfony的错误模板。

我有以下conf:

<VirtualHost *:80>

ServerName localhost-de
ServerAdmin me@mydomain.com
DocumentRoot /var/www/html

<Directory /var/www/html/>
  Options Indexes FollowSymLinks MultiViews
  AllowOverride All 
  ErrorDocument 404 /staticErrorPage.html
  Order deny,allow
  Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

Alias /kontakt "/var/www/html/contact/web"
Alias /skin "/var/www/html/skin"

RewriteEngine on

RewriteRule ^/skin/(.{7})/(.*) /skin/$2

SetEnv locale de_DE
</VirtualHost>

我的Symfony应用程序位于&#34; / var / www / html / contact /&#34;下。当我进入一个不存在的页面,如&#34; localhost-de / foo&#34;我正在获取我的HTML页面的内容。 但是,当我进入一个不存在的页面,如&#34; localhost-de / kontakt / foo&#34;我总是得到symfony / twig页面的内容。

我知道我可以覆盖twig模板,但我不想这样。任何想法如何处理这个?

1 个答案:

答案 0 :(得分:0)

ErrorDocument仅用于您指定的目录。您应该将ErrorDocument包含在Location或LocationMatch指令中。阅读apache文档以获取更多详细信息。