2015-03-10 16:39:04 +01:00
|
|
|
AddDefaultCharset UTF-8
|
|
|
|
|
2015-06-30 05:23:29 +02:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
|
2015-05-19 01:22:05 +02:00
|
|
|
# Enable rewrite rules
|
2015-03-08 18:42:27 +01:00
|
|
|
RewriteEngine on
|
|
|
|
|
2018-03-04 21:43:30 +01:00
|
|
|
# Base directory
|
|
|
|
RewriteBase /
|
|
|
|
|
2015-05-19 01:22:05 +02:00
|
|
|
# Deny direct access to .txt files
|
2016-01-26 14:41:31 +01:00
|
|
|
RewriteRule ^bl-content/(.*)\.txt$ - [R=404,L]
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2015-05-19 01:22:05 +02:00
|
|
|
# All URL process by index.php
|
2015-03-08 18:42:27 +01:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
2015-09-17 03:21:23 +02:00
|
|
|
RewriteRule ^(.*) index.php [PT,L]
|
2015-06-30 05:23:29 +02:00
|
|
|
|
|
|
|
</IfModule>
|