Same problem and similar fix here (Drupal 10.2.6 installed via Installatron on shared hosting with Apache 2.4.59 and PHP 5.6).
PHP reported the following error:
[Thu May 23 09:13:50.872997 2024] [core:alert] [pid 14044:tid 47970348619520] [remote [IP_REDACTED]:36660] /home2/[USERNAME_REDACTED]/private_html/drupal10/sites/[MULTISITE_REDACTED]/files/.htaccess: Option Includes not allowed here, referer: https://[DOMAIN_REDACTED]/batch?id=3&op=start
Instead of commenting the whole line I just removed the -Includes directive as follows:
# Turn off all options we don't need.
# Options -Indexes -ExecCGI -Includes -MultiViews
Options -Indexes -ExecCGI -MultiViews
# (rest of file untouched)
🐛 | Drupal core | When deleting a content type field, users do not realize the related View also is deleted
In Drupal 9.5.11, after deleting a float field of a custom content type, the corresponding view having table format can still be edited, saved, enabled, disabled and previewed, but its path returns a "page not found" error.