Can anyone tell me if this rewite from apache to tomact would still count as secure?
RewriteCond %{THE_REQUEST} "^(GET|POST)
https://.*" RewriteRule ^/(.*)
https://localhost:80/ [F,L]
RewriteCond %{REQUEST_URI} "!^/sub_domain_name/.*"
RewriteRule ^/(.*)
http://localhost:8080/sub_domain_name/$1 [P]
RewriteCond %{REQUEST_URI} ^/sub_domain_name/.*
RewriteRule ^/(.*)
http://localhost:8080/$1 [P]