alexmon1989/schools_kr/master/.htaccess - Htaccess File

alexmon1989/schools_kr/master/.htaccess

# Заголовок Cache-Control
<IfModule mod_headers.c>
        Header append Cache-Control "no-store, no-cache, must-revalidate"
</IfModule>
 
# Заголовок Expires
<IfModule mod_expires.c>
        ExpiresActive On ExpiresDefault "now"
</IfModule>

<IfModule mod_rewrite.c>
    RewriteEngine on

    # Send request to the subfolder, if its not a real file, folder or it's a root request
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d [OR]
    RewriteCond $1 ^$

    RewriteRule ^(.*)$ /schools_kr/public [QSA,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
no-cache, REQUEST_FILENAME

Comments

Apache