How do I create a symbolic link in Apache?
ln -s [TARGET DIRECTORY OR FILE] ./[SHORTCUT]
For example, go to directory where symbolic link will reside and enter:
ln -s /usr/local/apache/logs ./logs
This points (creates) a symbolic link "./logs" to "/usr/local/apache/logs"