Insecure HTTP Usage
Invicti identified that the target website allows web browsers to access to the website over HTTP and doesn't redirect them to HTTPS.
HSTS is implemented in the target website however HTTP requests are not redirected to HTTPS. This decreases the value of HSTS implementation significantly.
For example visitors who haven't visited the HTTPS version of the website previously will not be able to take advantage of HSTS.
Configure your webserver to redirect HTTP requests to HTTPS.
i.e for Apache, you should have modification in the httpd.conf. For more configurations, please refer to External References section.
# redirect all HTTP to HTTPS <VirtualHost *:80> ServerAlias * RewriteEngine On RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [redirect=301] </VirtualHost>