Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1.  
  2. # BEGIN WordPress
  3. # Las directivas (líneas) entre `BEGIN WordPress` y `END WordPress` se generan dinámicamente
  4. # , y solo se deberían modificar mediante filtros de WordPress.
  5. # Cualquier cambio en las directivas que hay entre esos marcadores se sobreescribirán.
  6. <IfModule mod_rewrite.c>
  7. RewriteEngine On
  8. RewriteBase /
  9. RewriteRule ^index\.php$ - [L]
  10. RewriteCond %{REQUEST_FILENAME} !-f
  11. RewriteCond %{REQUEST_FILENAME} !-d
  12. RewriteRule . /index.php [L]
  13. </IfModule>
  14. # END WordPress
  15.  
  16. # BEGIN cPanel-generated php ini directives, do not edit
  17. # Manual editing of this file may result in unexpected behavior.
  18. # To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
  19. # For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
  20. <IfModule php7_module>
  21. php_flag display_errors Off
  22. php_value max_execution_time 60
  23. php_value max_input_time 60
  24. php_value max_input_vars 1000
  25. php_value memory_limit 128M
  26. php_value post_max_size 32M
  27. php_value session.gc_maxlifetime 1440
  28. php_value session.save_path "/var/cpanel/php/sessions/ea-php73"
  29. php_value upload_max_filesize 2M
  30. php_flag zlib.output_compression Off
  31. </IfModule>
  32. <IfModule lsapi_module>
  33. php_flag display_errors Off
  34. php_value max_execution_time 30
  35. php_value max_input_time 60
  36. php_value max_input_vars 1000
  37. php_value memory_limit 128M
  38. php_value post_max_size 8M
  39. php_value session.gc_maxlifetime 1440
  40. php_value session.save_path "/var/cpanel/php/sessions/ea-php73"
  41. php_value upload_max_filesize 2M
  42. php_flag zlib.output_compression Off
  43. </IfModule>
  44. # END cPanel-generated php ini directives, do not edit
  45.  
  46. # php -- BEGIN cPanel-generated handler, do not edit
  47. # Set the “ea-php73” package as the default “PHP” programming language.
  48. <IfModule mime_module>
  49. AddHandler application/x-httpd-ea-php73 .php .php7 .phtml
  50. </IfModule>
  51. # php -- END cPanel-generated handler, do not edit
  52.  
  53.  
  54. RewriteEngine On
  55. RewriteCond %{HTTPS} off
  56. RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement