Diff: STRATO-apps/wordpress_03/app/wp-content/uploads/wpforms/.htaccess
Keine Baseline-Datei – Diff nur gegen leer.
1
2
+
# BEGIN WPForms
3
+
# Die Anweisungen (Zeilen) zwischen „BEGIN WPForms“ und „END WPForms“ sind
4
+
# dynamisch generiert und sollten nur über WordPress-Filter geändert werden.
5
+
# Alle Änderungen an den Anweisungen zwischen diesen Markierungen werden überschrieben.
6
+
# Disable PHP and Python scripts parsing.
7
+
<Files *>
8
+
SetHandler none
9
+
SetHandler default-handler
10
+
RemoveHandler .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo
11
+
RemoveType .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo
12
+
</Files>
13
+
<IfModule mod_php5.c>
14
+
php_flag engine off
15
+
</IfModule>
16
+
<IfModule mod_php7.c>
17
+
php_flag engine off
18
+
</IfModule>
19
+
<IfModule mod_php8.c>
20
+
php_flag engine off
21
+
</IfModule>
22
+
<IfModule headers_module>
23
+
Header set X-Robots-Tag "noindex"
24
+
</IfModule>
25
+
# END WPForms