-
Notifications
You must be signed in to change notification settings - Fork 1
/
.htaccess
62 lines (49 loc) · 1.72 KB
/
.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Order allow,deny
Deny from 5.248.86.106
Allow from all
php_flag magic_quotes_gpc 0
# выдача резальтатов сторго в utf-8
php_value default_charset UTF-8
# php_value mbstring.func_overload 4 Zend_Search_Lucene требует 4
AddDefaultCharset UTF-8
# режим работы CMS
<IfModule mod_env.c>
SetEnv ZETTA_MODE development
</IfModule>
# mod_rewrite
RewriteEngine on
RewriteBase /
# Убираем точку в конце домена
RewriteCond %{HTTP_HOST} ^(.*)\./?$ [NC]
RewriteRule ^(.*)$ http:\/\/%1/$1 [R=301,L]
# добавляем слеш в конце
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !.*\/mvc\/.*$
RewriteCond %{REQUEST_URI} !\..+$
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteCond %{REQUEST_METHOD} =GET
RewriteRule ^(.*[^/])$ http:\/\/%{HTTP_HOST}%{REQUEST_URI}/ [L,R=301]
# Редирект с www на сайт
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http:\/\/%1/$1 [R=301,QSA,L]
# библиотека файлов закрытых от доступа
RewriteRule zlib/.* zetta_quick.php
# генерация превью картинок
RewriteCond %{REQUEST_URI} UserFiles/(.+)\.(jpg|png)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ zetta_quick.php
RewriteRule ^favicon.ico$ /UserFiles/images/favicon.ico
# Основные правила
RewriteCond %{REQUEST_URI} !/*.txt$
RewriteCond %{REQUEST_URI} !/*.xml$
RewriteCond %{REQUEST_URI} !favicon.ico$
RewriteCond %{REQUEST_URI} !public/.*
RewriteCond %{REQUEST_URI} !zlib/.*
RewriteCond %{REQUEST_URI} !Temp/.*
RewriteCond %{REQUEST_URI} !UserFiles/.*
RewriteCond %{REQUEST_URI} !zetta_quick.php
RewriteRule ^(.*)$ zetta.php
<files *.ini>
order deny,allow
deny from all
</files>