graphidev/WOK/master/.htaccess - Htaccess File

graphidev/WOK/master/.htaccess

<IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /
    Options +FollowSymlinks

    RewriteCond %{HTTPS} off
    RewriteRule .* - [E=REQUEST_SCHEME:http]

    RewriteCond %{HTTPS} on
    RewriteRule .* - [E=REQUEST_SCHEME:https]

    #RewriteCond %{REQUEST_FILENAME} !-f
    #RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php [L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTPS, REQUEST_FILENAME, REQUEST_SCHEME

Comments

Apache