bludit/.htaccess

19 lines
394 B
ApacheConf
Raw Permalink 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
# Base directory
2020-03-21 15:45:03 +01:00
#RewriteBase /
2018-09-05 22:55:14 +02:00
# Deny direct access to the next directories
2018-09-18 23:59:38 +02:00
RewriteRule ^bl-content/(databases|workspaces|pages|tmp)/.*$ - [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
2019-05-17 20:28:48 +02:00
RewriteCond %{REQUEST_FILENAME} !-d
2015-09-17 03:21:23 +02:00
RewriteRule ^(.*) index.php [PT,L]
2015-06-30 05:23:29 +02:00
</IfModule>