.htaccess для 1С-Битрикс

.htaccess для 1С-Битрикс

17.04.2013

Правильно сконфигурированyый файл htaccess может решить несколько проблем с оптимизацией вашего сайта. Например, проблему с 404 ошибкой в комплексных компонентах Битрикса, таких как каталог, новости и т.п.

Options -Indexes 
ErrorDocument 404 /404.php
 
<IfModule mod_php5.c>
  php_flag session.use_trans_sid off
  #php_value display_errors 1
  #php_value mbstring.internal_encoding UTF-8
</IfModule>
 
<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  RewriteEngine On
   RewriteBase /
   #301 редирект с www домена
   RewriteCond %{HTTP_HOST} ^www.youdomain.ru$ [NC]
   RewriteRule ^(.*)$ http://youdomain.ru/$1 [R=301,L]
 
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_URI} !-f
   RewriteCond %{REQUEST_URI} !/$
   RewriteCond %{REQUEST_URI} !.html$
   RewriteCond %{REQUEST_URI} !.php$
   RewriteRule (.+) $1/ [R=301,L]
 
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !/bitrix/urlrewrite.php$
  RewriteRule ^(.*)$ /bitrix/urlrewrite.php [L]
  RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
 
</IfModule>
 
<IfModule mod_dir.c>
  DirectoryIndex index.php index.html
</IfModule>
 
<IfModule mod_expires.c>
  ExpiresActive on
  ExpiresByType image/jpeg "access plus 3 day"
  ExpiresByType image/gif "access plus 3 day"
  ExpiresByType image/png "access plus 3 day"
  ExpiresByType text/css "access plus 3 day"
  ExpiresByType application/javascript "access plus 3 day"  
</IfModule>

Узнал сам - поделись с друзьями!

Возврат к списку