Dev-Mind/website/master/app/.htaccess - Htaccess File

Dev-Mind/website/master/app/.htaccess

# Apache Server Configs v2.14.0 | MIT License

Options +FollowSymlinks
RewriteEngine On

#First rewrite any request to the wrong domain to use the correct one (here www.)
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

#Now, rewrite to HTTPS:
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteRule  ^index.html$ index.html  [L]

ErrorDocument 404 https://dev-mind.fr/404.html

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, HTTPS, REQUEST_URI

Comments

Apache