You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adopt one line in the TYPO3 default .htaccess right in your document_root:
# delete `Options -MultiViews`
# see also https://github.com/TYPO3/TYPO3.CMS/blob/440f748a8d75be5a2be516f5c09b99c932942f2c/typo3/sysext/install/Resources/Private/FolderStructureTemplateFiles/root-htaccess#L356
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Need to set up the SYS/trustedHostPattern even if the default TYPO3 core value SERVER_NAME is set and $_SERVER['SERVER_NAME'] has the correct value
# example for univie.ac.at subdomain and a dedicated domain with and without www prefix:
'SYS' => [
'trustedHostsPattern' => '(www\\.)?organisationalwebsite(\\.univie\\.ac)?.at',
],
Need to set up SYS/reverseProxy{IP,SSL} settings due to possible wrong $_SERVER variables
$_SERVER['SERVER_PORT'] is 80 (and not 443)
missing $_SERVER['HTTPS'] environment variable (there's only a $_SERVER['HTTP_X_ZID_ORIGINAL_HTTPS'] variable)