Bug #100137
closed404 redirect error on restricted servers
0%
Description
A 404 error like an unknown link redirects to a 404 page of the local website. The website is shown to everyone.
The local server runs under ddev and a apache-server is defined for the local website..
The redirect works as expected, if a unknown error occur..
As soon as I restrict access to the website via .htaccess and .htpasswd, I would get the attached error page instead of the 404 page.
Paste into .htaccess
AuthUserFile "/usr/www/users/myAbsolutePath/current/public/.htpasswd"
AuthName "Realm"
AuthType Basic
require valid user
And paste in htpasswd (user:test password: Test123!)
test:{SHA}lq/Xq6QG6tQ7o9YrLA+WYi5LLJM=
I would have expected the 404 page to keep popping up on broken/unknown speaking links.
Files
Updated by Christoph Lehmann over 1 year ago
- Status changed from New to Needs Feedback
A redirect to a 404 page should always be prevented. You better always get a direct 404 response.
Given a 404 page could not be fetched by TYPO3 (because of basic auth) in order to show it directly, then you could try to whitelist TYPO3 via IP. Something like that:
<RequireAny> Require ip 22.33.44.55 Require valid-user </RequireAny>
Does it help?
Updated by Christoph Lehmann over 1 year ago
Or does the internal request feature help you?
Updated by Dieter Porth over 1 year ago
That will help me. Thanks a lot.
This ticket may be closed.
Updated by Sybille Peters over 1 year ago
- Status changed from Needs Feedback to Closed
- % Done changed from 100 to 0
Closing because problem seems to be resolved.