View file .htaccess

File size: 2.84Kb
#/**
# * @name SHCMS Engine
# * @copyright Shamsik © 2012
# * Данный код защищен авторскими правами
# * http://shcms.ru
# */

# ограничения на выгрузку файлов
php_value upload_max_filesize 600M
php_value post_max_size 600M

# так безопаснее
php_value register_globals 0 
# убираем экранирование кавычек 
php_value magic_quotes_gpc 0 
# дописываем сессию к URL 
php_value session.use_trans_sid 1 
php_value session.cookie_lifetime 0
# кодировка по-умолчанию
AddDefaultCharset UTF-8
DirectoryIndex index.php
Options -Indexes
 
RewriteEngine On
RewriteRule ^static.php$ /shcms/members.php [L]
RewriteRule ^rss.xml$ /shcms/rss.php [L]
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule .* index.php [F]
# с помощью этого кода можно даже переделать файл.php на просто файл
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

# задаем соответствие mime типов расширению
AddType text/vnd.wap.wml;charset=utf-8 .wml
AddType application/vnd.sonyericsson.mms-template tpl
AddType application/vnd.wap.wmlc .wmlc
AddType text/vnd.wap.wmlscript .wmls
AddType application/vnd.wap.wmlscriptc .wmlsc
AddType image/vnd.wap.wbmp .wbmp
AddType application/vnd.eri.thm .thm 
AddType application/vnd.mophun.application .mpn  
AddType application/vnd.mophun.certificate .mpc
AddType text/vnd.sun.j2me.app-descriptor .jad
Addtype text/x-vmel .mel
Addtype text/sql .sql
Addtype audio/imelody .imy
AddType application/vnd.smaf .mmf
Addtype text/x-vmel .emy
AddType audio/amr .amr
AddType audio/x-wav .wav
AddType application/x-tar .hid
Addtype image/jpeg .jpg 
Addtype image/jpeg .jpeg 
Addtype image/gif .gif 
Addtype image/png .png 
Addtype image/bmp .bmp 
Addtype text/x-imelody .imy 
Addtype text/x-emelody .emy 
Addtype text/x-vcard .vcf 
Addtype text/x-vcalendar .vcs 
Addtype text/calendar .ics 
Addtype application/smil .smil 
Addtype application/smil .smi 
Addtype application/java-archive .jar 
Addtype application/vnd.symbian.install .sis 
Addtype audio/wav .wav 
Addtype audio/midi .midi 
Addtype audio/midi .mid 
Addtype audio/rmf .rmf 
Addtype application/vnd.wap.mms-message .mms 
AddType video/flv .flv
AddType video/mp4 .mp4
Addtype video/3gpp .3gp
Addtype application/zip .zip
Addtype audio/mpeg .mp3

#Перекидывает на файл errors.php
ErrorDocument 400 /errors.php?errors=400
ErrorDocument 403 /errors.php?errors=403
ErrorDocument 404 /errors.php?errors=404
ErrorDocument 405 /errors.php?errors=405
ErrorDocument 408 /errors.php?errors=408
ErrorDocument 500 /errors.php?errors=500
ErrorDocument 502 /errors.php?errors=502
ErrorDocument 504 /errors.php?errors=504