-
Notifications
You must be signed in to change notification settings - Fork 2
/
.htaccess
42 lines (32 loc) · 1009 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /fatamorgana/
RewriteRule ^(.*)/fm/(.*)$ $1/fatamorgana/$2 [L,R=301]
RewriteRule ^(.*)/oo/(.*)$ $1/ovaloffice/$2 [L,R=301]
RewriteCond %{HTTP_HOST} ^www\.dieverdammten\.net$ [NC]
RewriteRule ^(.*)$ http://dieverdammten.net/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|css|js|img|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 index.php
</IfModule>
<Files .htaccess>
order allow,deny
deny from all
</Files>
AddDefaultCharset utf-8
<IfModule mod_php5.c>
#php_value allow_url_fopen 1
</IfModule>
AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType application/x-font-woff .woff
#php_flag display_startup_errors on
#php_flag display_errors on
#php_flag log_errors on