I have an .htaccess in my public_html directory with the following rules:
They are working fine, confirmed through phpinfo();
However, when I am placing .htaccess in a sub-directory, with rules that suppose to override the above, they are being completely ignored, and only the above rules are working.
For example, I have placed an .htaccess file in my public_html/admin directory, with the following rules
When checking phpinfo(); it shows that the values are still "200000" and "Off" instead of "7200" and "On" respectively.
Why does this happen and how can I fix it?
Code:
<IfModule litespeed>
php_flag zlib.output_compression On
php_value zlib.output_compression_level 2
php_value session.gc_maxlifetime 200000
php_flag display_startup_errors On
php_flag html_errors On
php_flag ignore_repeated_errors Off
php_flag ignore_repeated_source Off
php_flag report_memleaks On
php_flag track_errors On
php_value log_errors_max_len 0
php_flag display_errors Off
php_flag log_errors On
php_value error_log errors.log
php_value max_execution_time 600
php_value max_input_time 600
php_value max_input_vars 100000
</IfModule>
However, when I am placing .htaccess in a sub-directory, with rules that suppose to override the above, they are being completely ignored, and only the above rules are working.
For example, I have placed an .htaccess file in my public_html/admin directory, with the following rules
Code:
<IfModule litespeed>
php_value session.gc_maxlifetime 7200
php_flag display_errors On
</IfModule>
Why does this happen and how can I fix it?
Last edited by a moderator: