CREBP/SRA/master/.htaccess - Htaccess File

CREBP/SRA/master/.htaccess

Options -Indexes

SetEnv PHPRC /home/crebp/public_html/crebp-sra.com/php.ini

# Rewrite fun
RewriteEngine on
# RewriteBase /

# Dont do anything if its in the /lab directory
RewriteRule ^lab/    - [L]

# If the file exists
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)$    - [L]

# Throw everything else at Codeigniter
RewriteCond $1 !^(index.php|images|robots.txt)
RewriteRule ^(.*)$ index.php/$1 [L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache