.htaccess: Option FollowSymLinks not allowed here

Apache HTTP ServerI moved from mod_php to fcgi style hosting and got the following in Apache error log when I tried to open one of my websites:

[Tue Nov 08 08:34:08.357359 2022] [core:alert] [pid 19149] [client 95.158.43.63:14405] /home/domain.com/public_html/.htaccess: Option All not allowed here

[Tue Nov 08 08:35:58.058962 2022] [core:alert] [pid 14190] [client 95.158.43.63:46366] /home/domain.com/public_html/.htaccess: Option FollowSymlinks not allowed here

To solve Option FollowSymLinks not allowed here:

Find the line:
Options +FollowSymlinks

And change to:
Options +SymLinksIfOwnerMatch

To solve Option All not allowed here:

Find the line:
Options All -Indexes

And change to:
Options -Indexes

Good luck!

Want me to do this for you? Drop me a line: itgalaxyzzz {at} gmail [dot] com