18 lines
321 B
ApacheConf
18 lines
321 B
ApacheConf
AddDefaultCharset UTF-8
|
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
# Enable rewrite rules
|
|
RewriteEngine on
|
|
|
|
# Base directory
|
|
RewriteBase /
|
|
|
|
# Deny direct access to .txt files
|
|
RewriteRule ^bl-content/(.*)\.txt$ - [R=404,L]
|
|
|
|
# All URL process by index.php
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.*) index.php [PT,L]
|
|
|
|
</IfModule> |