﻿<VirtualHost *:80>
    ServerAdmin antonyodu@gmail.com
    ServerName ratemypay.net
    ServerAlias www.ratemypay.net
    DocumentRoot /var/www/ratemypay_dev/public

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    <Directory /var/www/ratemypay_dev/public>
        Require all granted
        AllowOverride All
        Options Indexes Multiviews FollowSymLinks
    </Directory>

    RewriteEngine on
    RewriteCond %{SERVER_NAME} =ratemypay.net [OR]
    RewriteCond %{SERVER_NAME} =www.ratemypay.net
    RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHos