AngryBSOD/WebDevolop-Site/master/.htaccess - Htaccess File

AngryBSOD/WebDevolop-Site/master/.htaccess

###############################
###### AngryBSOD ENGINE #######
###############################

AddDefaultCharset UTF-8

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule /(.*) https://%{HTTP_HOST}%{REQUEST_URI}

ErrorDocument 404 /404/

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteBase /

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?pul [NC,L]
</IfModule>

<IfModule mod_expires.c>
    ExpiresActive On
    ExpiresDefault "access plus 1 year"
</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, HTTPS, REQUEST_FILENAME, REQUEST_URI

Comments

Apache