What are the best practices for setting up symbolic links in Apache for web server access?

When setting up symbolic links in Apache for web server access, it is important to ensure that the FollowSymLinks option is enabled in the Apache configuration file to allow Apache to follow symbolic links. Additionally, it is recommended to set up symbolic links pointing to directories outside of the web root to prevent potential security risks.

<Directory "/path/to/web/root">
    Options +FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>