Skip to content

Instantly share code, notes, and snippets.

@DiegoVilela
Created December 3, 2015 12:52
Show Gist options
  • Save DiegoVilela/4435b44bdd69a40296de to your computer and use it in GitHub Desktop.
Save DiegoVilela/4435b44bdd69a40296de to your computer and use it in GitHub Desktop.
<Directory /home/blog>
# Permite o uso de URL's personalizadas
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment