tollwerk/admin

View on GitHub
src/Admin/Infrastructure/Templates/apache_vhost_http.include

Summary

Maintainability
Test Coverage
<IfModule mod_rewrite.c>
    RewriteEngine On

    # Redirect all non-SSL traffic to SSL (if not in development mode)
    RewriteCond %{ENV:APP_ENV} !development
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^{{primary_domain_pcre}}$ [NC]
    RewriteCond %{REQUEST_URI} !^/\.well\-known
    RewriteRule ^ https://{{primary_domain}}%{REQUEST_URI} [L,R=301]
</IfModule>