citstudio/codeigniter-test-and-trial/master/.htaccess - Htaccess File

citstudio/codeigniter-test-and-trial/master/.htaccess

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteCond $1 !^(index.php|robots.txt|next-contents)
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
  RewriteRule "(^|/)." - [F]
</IfModule>

<IfModule mod_headers.c>
  <FilesMatch ".(ttf|ttc|otf|eot|woff|font.css|css)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache