Skip to content

Instantly share code, notes, and snippets.

@fernandolopes
Created February 28, 2013 12:27
Show Gist options
  • Select an option

  • Save fernandolopes/5056406 to your computer and use it in GitHub Desktop.

Select an option

Save fernandolopes/5056406 to your computer and use it in GitHub Desktop.
Options FollowSymLinks
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /multicredmais/
# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [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]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment