| Current Path : /etc/apache2/sites-enabled/ |
| Current File : //etc/apache2/sites-enabled/softlogicx.ca.conf |
<VirtualHost *:80>
ServerAdmin webmaster@softlogicx.ca
DocumentRoot /var/www/html/softlogicxwebsite
ServerName softlogicx.ca
ServerAlias www.softlogicx.ca
ErrorLog logs/softlogicx-error_log
CustomLog logs/softlogicx-access_log common
<Directory "/var/www/html/softlogicxwebsite">
AllowOverride all
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =softlogicx.ca [OR]
RewriteCond %{SERVER_NAME} =www.softlogicx.ca
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>