memtech/TechCampCFP/master/web/.htaccess - Htaccess File

memtech/TechCampCFP/master/web/.htaccess

<IfModule mod_rewrite.c>
    Options -MultiViews
    SetEnv CFP_ENV production
    RewriteEngine On

    RewriteCond %{HTTP:Authorization} ^(.*)
    RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [QSA,L]

    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://cfp.techcampmemphis.org/$1 [R,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
ENV, REQUEST_FILENAME, SERVER_PORT

Comments

Apache