2015-03-10 15:39:04 +00:00
|
|
|
AddDefaultCharset UTF-8
|
|
|
|
|
2015-05-18 23:22:05 +00:00
|
|
|
# Remove the trailing slash from URL
|
|
|
|
DirectorySlash Off
|
|
|
|
|
|
|
|
# Enable rewrite rules
|
2015-03-08 14:42:27 -03:00
|
|
|
RewriteEngine on
|
|
|
|
|
2015-05-18 23:22:05 +00:00
|
|
|
# Deny direct access to .txt files
|
|
|
|
RewriteRule ^content/(.*)\.txt$ - [R=404,L]
|
2015-05-05 01:00:01 +00:00
|
|
|
|
2015-05-18 23:22:05 +00:00
|
|
|
# All URL process by index.php
|
2015-03-08 14:42:27 -03:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
2015-05-05 01:00:01 +00:00
|
|
|
RewriteRule ^(.*) index.php [L]
|