yansyaf/codeigniter-omelet/master/.htaccess - Htaccess File

yansyaf/codeigniter-omelet/master/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule> 

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

<IfModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 1 month"

  # Force no caching for dynamic files
  <FilesMatch ".(php|cgi|pl|htm)$">
    ExpiresActive Off
    #Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
    #Header set Pragma "no-cache"
  </FilesMatch>
</IfModule>

FileETag MTime Size

On Github License

Files

Download PDF of Htaccess file
no-cache, Pragma, REQUEST_FILENAME

Comments

Apache