.span {
book-form { width: 8.33%; }
callback-form { width: 16.66%; }
}
AddDefaultCharset UTF-8
<IfModule mod_rewrite.c>
#Включаем отслеживание сим-ссылок
Options +FollowSymLinks
#Запускаем url_rewriting
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} !^443$
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index(\.(php|html|htm))?\ HTTP/
RewriteRule ^(.*)index\.(php|html|htm)$ $1 [R=301,L]
RewriteRule ^sport_in_sochipark$ /sport-in-sochipark [R=301,L]
RewriteRule ^rooms/room_std_1$ /rooms/room-std-1 [R=301,L]
RewriteRule ^rooms/room_std_2$ /rooms/room-std-2 [R=301,L]
RewriteRule ^rooms/room_lux_2$ /rooms/room-lux-3 [R=301,L]
RewriteRule ^rooms/room_lux_3$ /rooms/room-lux-3 [R=301,L]
RewriteRule ^rooms/restaurants$ /restaurants [R=301,L]
RewriteRule ^rooms/raspolozhenie$ /raspolozhenie [R=301,L]
RewriteRule ^rooms/sport_in_sochipark$ /sport-in-sochipark [R=301,L]
RewriteCond %{THE_REQUEST} \.(php|html|htm)\ HTTP/
RewriteCond %{THE_REQUEST} !b06e3b1e5fc6\.(php|html|htm)\ HTTP/
RewriteCond %{THE_REQUEST} !form\.(php|html|htm)\ HTTP/
RewriteRule ^(.*)\.(php|html|htm)$ $1 [R=301,L]
RewriteCond %{QUERY_STRING} ^(.+)$ [NC]
RewriteRule ^(.*)$ $1? [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
# сжатие text, html, javascript, css, xml:
<ifModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
</ifModule>
# кеш браузера
<IfModule mod_expires.c>
ExpiresActive On
#по умолчанию кеш в 5 секунд
ExpiresDefault "access 7 days"
# Включаем кэширование изображений и флэш на месяц
ExpiresByType image/x-icon "access plus 1 month"
ExpiresByType image/jpeg "access plus 4 weeks"
ExpiresByType image/png "access plus 30 days"
ExpiresByType image/gif "access plus 43829 minutes"
ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds"
# Включаем кэширование css, javascript и текстовых файлоф на одну неделю
ExpiresByType text/css "access plus 604800 seconds"
ExpiresByType text/javascript "access plus 604800 seconds"
ExpiresByType application/javascript "access plus 604800 seconds"
ExpiresByType application/x-javascript "access plus 604800 seconds"
# Включаем кэширование html и htm файлов на один день
ExpiresByType text/html "access plus 43200 seconds"
# Включаем кэширование xml файлов на десять минут
ExpiresByType application/xhtml+xml "access plus 600 seconds"
# Нестандартные шрифты сайта
ExpiresByType application/x-font-ttf "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType application/x-font-woff "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
</ifModule>
# Cache-Control
<ifModule mod_headers.c>
# 30 дней
<filesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
# 30 дней
<filesMatch "\.(css|js)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
# 2 дня
<filesMatch "\.(xml|txt)$">
Header set Cache-Control "max-age=172800, public, must-revalidate"
</filesMatch>
# 1 день
<filesMatch "\.(html|htm|php)$">
Header set Cache-Control "max-age=172800, private, must-revalidate"
</filesMatch>
</ifModule>
#Запрет отдачи HTTP-заголовков Vary браузерам семейства MSIE
<IfModule mod_setenvif.c>
BrowserMatch "MSIE" force-no-vary
BrowserMatch "Mozilla/4.[0-9]{2}" force-no-vary
</IfModule>
<IfModule mod_deflate.c>
#Включаем сжатие
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/css
<IfModule mod_setenvif.c>
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>
</IfModule>
Ну и да .htaccess читается сверху вниз, да и добавок перечитыается несколько раз пока ссылки не устаканятся.
RewriteCond %{ENV:HTTPS} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{ENV:HTTPS} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{SERVER_PORT} !^443$
вот, что получается:http://parkotel-sochi.ru/ 301
https://parkotel-sochi.ru/ 200 Сочи Парк Отель - официальный сайт сервиса бронирования отелей: цены на 2018.
https://parkotel-sochi.ru/rooms/restaurants 301
https://parkotel-sochi.ru/rooms/room_std_2 301
https://parkotel-sochi.ru/raspolozhenie 200 Расположение | Сочи Парк Отель.
https://parkotel-sochi.ru/sport_in_sochipark 301
https://parkotel-sochi.ru/rooms/room_std_1 301
https://parkotel-sochi.ru/rooms/room_lux_2 301
https://parkotel-sochi.ru/rooms/room_lux_3 301
https://parkotel-sochi.ru/rooms/raspolozhenie 301
https://parkotel-sochi.ru/rooms/sport_in_sochipark 301
https://parkotel-sochi.ru/confidence 200 Политика обработки персональных данных | Сочи Парк Отель - сайт сервиса бронирования отелей
https://parkotel-sochi.ru/restaurants 200 Рестораны | Сочи Парк Отель.
https://parkotel-sochi.ru/rooms 301
https://parkotel-sochi.ru/sport-in-sochipark 200 Спорт в Сочи Парк Отель.
https://parkotel-sochi.ru/rooms/ 200 Категории номеров в отеле Сочи Парк | Официальный сайт сервиса бронирования по ценам 2018.
https://parkotel-sochi.ru/rooms/room-lux-3 200 Люкс 3-х комнатный | Сочи Парк Отель цены на 2018 | Официальный сайт сервиса бронирования
https://parkotel-sochi.ru/rules 200 Правила и условия бронирования | Сочи Парк Отель - сайт сервиса бронирования отелей
https://parkotel-sochi.ru/rooms/room-std-2 200 Стандарт 2-х местный | Сочи Парк Отель цены на 2018 | Официальный сайт сервиса бронирования
https://parkotel-sochi.ru/rooms/room-std-1 200 Стандарт 1-но местный | Сочи Парк Отель цены на 2018| Официальный сайт сервиса бронирования
вроде все нормально (добавил редиректы со страниц с ошибками) .pagename1 {
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: $font__pagename1;
}
}
.pagename2 {
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: $font__pagename2;
}
}