raminabsari/phonicsschool/master/.htaccess - Htaccess File

raminabsari/phonicsschool/master/.htaccess

# BEGIN WordPress

RewriteEngine On
RewriteCond %{SERVER_PORT} 443
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /new-phonicsschool/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /new-phonicsschool/index.php [L]
</IfModule>

<IfModule mod_deflate>
    # Enable compression for the following file types.
    AddOutputFilterByType            
     DEFLATE                         
      application/javascript         
      application/json               
      application/xml                
      text/css                       
      text/html                      
      text/javascript                
      text/plain                     
      text/xml                       
    font/otf               
    font/ttf                       
    font/woff                      
    font/woff2
</IfModule>

# END WordPress

On Github License

Files

Download PDF of Htaccess file
DEFLATE, HTTP_HOST, REQUEST_FILENAME, REQUEST_URI, SERVER_PORT

Comments

Apache