bludit/.htaccess

15 lines
289 B
ApacheConf
Raw Normal View History

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
2015-05-19 01:22:05 +02:00
# Deny direct access to .txt files
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>