ermolaevalexey
@ermolaevalexey
frontend веб-разработчик

Каковы могут быть причины того, что .htaccess игнорирует абсолютно все мои команды?

Или где-то ошибка в директивах? Полдня вожусь и не могу понять в чем дело. Может это потому что сервер на nginx и ему пофиг на апачевский htaccess, хотя там по идее модуль должен стоять для перевода директив .htaccess на язык nginx, или я совсем ничего не понимаю? Сайт на MODx, и аксес там сотит MODx совский. Может он не воспринимает директивы?
Я просто уже голову сломал.

Привожу полный код .htaccess(в нег оуже внесены изменения):
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.pochin\.ru
RewriteRule ^(.*)$ http://pochin.ru/$1 [R=permanent,L]
RewriteCond %{HTTP_HOST} pochincover.ru
RewriteRule (.*) http://pochin.ru/$1 [R=301,L]

# For full documentation and other suggested options, please see
# http://svn.modxcms.com/docs/display/MODx096/Friendly+URL+Solutions
# including for unexpected logouts in multi-server/cloud environments
# and especially for the first three commented out rules

#php_flag register_globals Off
AddDefaultCharset utf-8
#php_value date.timezone Europe/Moscow

# Fix Apache internal dummy connections from breaking [(site_url)] cache
RewriteCond %{HTTP_USER_AGENT} ^.*internal\ dummy\ connection.*$ [NC]
RewriteRule .* - [F,L]

# Rewrite domain.com -> www.domain.com -- used with SEO Strict URLs plugin
#RewriteCond %{HTTP_HOST} .
#RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
#RewriteRule (.*) http://www.example.com/$1 [R=301,L]



# Exclude /assets and /manager directories and images from rewrite rules
RewriteRule ^(manager|assets)/*$ - [L]
RewriteRule \.(jpg|jpeg|png|gif|ico)$ - [L]

# For Friendly URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

# Reduce server overhead by enabling output compression if supported.
#php_flag zlib.output_compression On
#php_value zlib.output_compression_level 5

#php_value display_errors On
#AddHandler php-script .php
#Action php-script /cgi-bin/php
  • Вопрос задан
  • 676 просмотров
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы