<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On
	RewriteCond %{HTTPS} off
	RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
	# Redirect Trailing Slashes...
    RewriteBase /intranet/
    RewriteRule ^(.*)/$ /intranet/$1 [L,R=301]
	
	#Redirect 301 /intranet/lessons /intranet/review-lessons
	
    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>
