I can access my site(s) by http, and manually by https : but I'd like to block/redirect all traffic to https.
And I'd prefer to do it via /etc/httpd/conf/sites.d/vhosts than messing with .htaccess.
My 00_default_vhosts.conf is
- Code: Select all
<VirtualHost _default_:80>
ServerAdmin root@localhost
ServerName localhost
</VirtualHost>
Appreciate any help.