Statusbericht liefert Fehlermeldung bei .wrong-Files
https://www.wacon.de/typo3-know-how/server-response-on-static-files.html
apache-Konfiguration
<IfModule mod_mime.c>
# Security configuration
RemoveType .html .htm
<FilesMatch ".+\.html?$">
AddType text/html .html .htm
</FilesMatch>
RemoveType .svg .svgz
<FilesMatch ".+\.svgz?$">
AddType image/svg+xml .svg .svgz
</FilesMatch>
<FilesMatch ".+\.php\.wrong">
RemoveHandler .php ForceType text/plain
AddType text/plain .wrong
</FilesMatch>
<FilesMatch ".+\.php\.txt">
RemoveHandler .php ForceType text/plain
AddType text/plain .txt
</FilesMatch>
...
Content Security Policy Reference
<IfModule mod_headers.c>
Header set Content-Security-Policy "default-src 'self'; script-src 'none'; style-src 'none'; object-src 'none';"
</IfModule>