matthewford/Nous-Design/master/.htaccess - Htaccess File

matthewford/Nous-Design/master/.htaccess

# BEGIN WordPress
<IfModule mod_rewrite.c>

  # Adaptive-Images -----------------------------------------------------------------------------------

  # Add any directories you wish to omit from the Adaptive-Images process on a new line, as follows:
  # RewriteCond %{REQUEST_URI} !ignore-this-directory
  # RewriteCond %{REQUEST_URI} !and-ignore-this-directory-too
  
  # RewriteCond %{REQUEST_URI} !assets
  RewriteCond %{REQUEST_URI} uploads

  # don't apply the AI behaviour to images inside AI's cache folder:
  RewriteCond %{REQUEST_URI} !ai-cache
    
  # Send any GIF, JPG, or PNG request that IS NOT stored inside one of the above directories
  # to adaptive-images.php so we can select appropriately sized versions
  
  # RewriteRule .(?:jpe?g|gif|png)$ adaptive-images.php
  RewriteRule .(?:jpe?g|gif|png)$ wp-content/themes/nousdesign/assets/adaptive-images.php

  # END Adaptive-Images -------------------------------------------------------------------------------
  
RewriteEngine On
RewriteBase /nousdesign/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /nousdesign/index.php [L]
</IfModule>

# END WordPress

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache