Created
February 15, 2011 19:59
-
-
Save brianherbert/828112 to your computer and use it in GitHub Desktop.
Standard Ushahidi htaccess
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Turn on URL rewriting only when mod rewrite is turn on | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
# Installation directory | |
RewriteBase /ushahidi | |
# Protect application and system files from being viewed | |
RewriteRule ^(application|modules|system) - [F,L] | |
# Prevent schedulers from being accessed remotely | |
#RewriteCond %{REMOTE_ADDR} !^127.0.0.1$ | |
#RewriteRule ^.*/scheduler/.*$ - [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/$0 [PT,L] | |
</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