Sin descripción

.htaccess 737B

12345678910111213141516171819202122232425
  1. # BEGIN WPForms
  2. # The directives (lines) between "BEGIN WPForms" and "END WPForms" are
  3. # dynamically generated, and should only be modified via WordPress filters.
  4. # Any changes to the directives between these markers will be overwritten.
  5. # Disable PHP and Python scripts parsing.
  6. <Files *>
  7. SetHandler none
  8. SetHandler default-handler
  9. RemoveHandler .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo
  10. RemoveType .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo
  11. </Files>
  12. <IfModule mod_php5.c>
  13. php_flag engine off
  14. </IfModule>
  15. <IfModule mod_php7.c>
  16. php_flag engine off
  17. </IfModule>
  18. <IfModule mod_php8.c>
  19. php_flag engine off
  20. </IfModule>
  21. <IfModule headers_module>
  22. Header set X-Robots-Tag "noindex"
  23. </IfModule>
  24. # END WPForms