Bug #91431
Updated by Rolf Kiefhaber over 4 years ago
The Nginx Config provided at https://docs.typo3.org/m/typo3/guide-installation/master/en-us/In-depth/SystemRequirements/Index.html has a problem with GET parameters in other languages. Lets assume you have two languages installed. English with / as Entry Point and German with /de/ as Entry Point and localhost as domain. The following URL works: http://localhost/index.php?id=1 but the following URL does not: http://localhost/de/index.php?id=1 http://localhost/en/index.php?id=1 With Apache both URLs work. Nginx returns a 404 error (returned in the PHP location block). This is especially problematic if pages with a custom typeNum are defined. They always return a nginx 404 error page in other languages. Edit: Fixed example URLs