I have noticed that after an update, all changes to the .htaccess file have disappeared. This is particularly unfortunate because it is the only way I can redirect from https://mydomain.tld to https://www.mydomain.tld.
I had suspected this before, but only now have I looked into it specifically.
I also suspect the same problem with WordPress-App.
…and added a php option so the /app/.htaccess looked like the following:
# write your custom settings, uncomment or add your directives
# php_value max_execution_time 600
# php_value max_input_time 600
# php_value memory_limit 512M
# This is a test to set max input time to 600
php_value max_input_time 600
After updating to most recent lamp 1.1.0 the file with content was still there:
[lamp1@node state]$ podman exec -ti apache2-app cat app/.htaccess
# write your custom settings, uncomment or add your directives
# php_value max_execution_time 600
# php_value max_input_time 600
# php_value memory_limit 512M
# This is a test to set max input time to 600
php_value max_input_time 600