Skip to content

Instantly share code, notes, and snippets.

@brianherbert
Created September 9, 2013 13:44
Show Gist options
  • Save brianherbert/6495765 to your computer and use it in GitHub Desktop.
Save brianherbert/6495765 to your computer and use it in GitHub Desktop.
Example Ushahidi .htaccess file
# Turn on URL rewriting only when mod rewrite is turn on
<IfModule mod_rewrite.c>
RewriteEngine On
# Installation directory
RewriteBase /
# Protect application and system files from being viewed
RewriteRule ^(application|modules|system|tests|sql) - [F,L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php?kohana_uri=$0 [L,QSA]
</IfModule>
# Protect the htaccess from being viewed
<Files .htaccess>
order allow,deny
deny from all
</Files>
# Don't show directory listings for URLs which map to a directory.
Options -Indexes
#Follow symlinks
Options +FollowSymlinks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment