Axsi Mini Shell

Current Path : /etc/apache2/sites-available/
Upload File
Current File : //etc/apache2/sites-available/homeremedy.conf

<Directory /var/www/html/homeremedy/public_html>
        AllowOverride All
        Require all granted
</Directory>
<VirtualHost *:80>
        ServerName homeremedy.in
        ServerAlias www.homeremedy.in
        ServerAdmin info@homeremedy.in
        DocumentRoot /var/www/html/homeremedy/public_html

        ErrorLog /var/www/html/homeremedy/logs/error.log
        CustomLog /var/www/html/homeremedy/logs/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =homeremedy.in [OR]
RewriteCond %{SERVER_NAME} =www.homeremedy.in
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>