Skip to content

Instantly share code, notes, and snippets.

@katzueno
Created July 2, 2014 03:07
Show Gist options
  • Save katzueno/9fb898c4056511783f3a to your computer and use it in GitHub Desktop.
Save katzueno/9fb898c4056511783f3a to your computer and use it in GitHub Desktop.
concrete5: Standard Pretty URL htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment