Skip to content

Instantly share code, notes, and snippets.

@mseri
Created December 3, 2013 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mseri/7779369 to your computer and use it in GitHub Desktop.
Save mseri/7779369 to your computer and use it in GitHub Desktop.
Anchor post-install .htaccess
Options -indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# 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/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 index.php
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment