I've a TYPO3 CMS 6.2.15 running with realurl and the following LocalConfiguration.php:
'FE' => array(
'pageNotFound_handling' => '/404/',
'pageNotFound_handling_statheader' => "HTTP/1.0 404 Not Found",
...
), ...
I've created a page called "404" and tested if I can call that page like page.ending/404/. It works. But now I try a non-existing page like page.ending/asdfasdf/ and get the default Apache Unauthorized
page. Why is that?
At least I get the correct 404 header information but why does it not redirect to the 404 page?