当我使用 ErrorDocument 时出现 404 Not Found 错误

当我使用 ErrorDocument 时出现 404 Not Found 错误

我知道这个帖子在网上和这里已经被讨论了很多次,我也尝试了几乎所有的方法,但我仍然遇到同样的问题。

我的配置文件:

<Proxy balancer://balancer-applitutoriel>
        BalancerMember http://localhost:8888 route=js1 retry=30 keepalive=on ttl=10 loadfactor=3 flushpackets=auto timeout=300

        Require all granted
</Proxy>

AliasMatch ^/myApp/static-([^/]+)/(.*)$ /var/www/html/myApp/static-$1/$2
ProxyPassMatch ^/myApp/static !
ProxyPass /myApp balancer://balancer-applitutoriel/myApp stickysession=NODESESSIONID nofailover=on

ProxyErrorOverride On
ErrorDocument 404 /custom_404.html

在文件夹中/var/www/html我有这个:

myApp
│   └── static-1.0.0-20170512094719
│       ├── config-spa.json
│       ├── css
│       │   ├── auth.css
│       │   └── theme.css
│       ├── custom_404.html
└── index.html

自定义错误页面不起作用。我该怎么办?

答案1

您的custom_404.html目录错误。/var/www/html该配置需要将其放在该目录中。您也可以将其保留在原处,但这样就会
ErrorDocument 404 /myApp/static-1.0.0-20170512094719/custom_404.html

答案2

尝试以下方法,

ErrorDocument 404 http://yourdomain.com/myApp/static-1.0.0-20170512094719/custom_404.html

我们为错误文件提供了带有域名的完整路径。

相关内容