sudo a2enmod rewrite #enable rewrite mod sudo a2enmod ssl #eh, optional? sudo systemctl reload apache2 #reload Apache sudo nano /etc/apache2/sites-available/000-default.conf #modify vhost to forward to webpage. ------Add below to above file to redirect------You only need port80 for most social media websites. They handle SSL themselves. Now, i'm off to get rid of this sciatica pain.ServerName yourdomain.com RewriteEngine On RewriteRule ^(.*)$ https://www.instagram.com/yourusername/ [R=301,L] ------ sudo systemctl reload apache2 done!