Все сервисы Хабра
Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Закрыть
Задать вопрос
ArtemDM
0
вклад
1
вопрос
1
ответ
0%
решений
Комментарии
Информация
Ответы
Вопросы
Комментарии
Подписки
Нравится
Как сделать массовый редирект страниц вложености?
ArtemDM
@ArtemDM
Автор вопроса
этот кусок кода я убрал.
Написано
более трёх лет назад
Как сделать массовый редирект страниц вложености?
ArtemDM
@ArtemDM
Автор вопроса
Возможно я что то не так сделал, поскольку нет опыта с htaccess .
# Включаем кэш в браузерах посетителей
Header set Cache-Control "private"
Header set Pragma "public"
# Все html и htm файлы будут храниться в кэше браузера один день
Header set Cache-Control "max-age=43200, private, must-revalidate"
# Все css, javascript и текстовые файлы будут храниться в кэше браузера одну неделю
Header set Cache-Control "max-age=604800, public"
# Все флэш файлы и изображения будут храниться в кэше браузера один месяц
Header set Cache-Control "max-age=2592000, public"
# шрифты
Header set Cache-Control "max-age=2592000, public"
Header set Cache-Control "max-age=2592000, public"
Header set Cache-Control "max-age=2592000, public"
# Отключаем кеширование php и других служебных файлов
#
# Header unset Cache-Control
#
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(.+)/$
RewriteRule ^(.+)/$
https://site.ru/$1
[R=301,L]
# сжатие text, html, javascript, css, xml:
#AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
# Включение GZIP-сжатия для различных типов файлов: TXT, SVG, RSS, javascript
AddOutputFilterByType DEFLATE text/html text/xml text/css text/plain
AddOutputFilterByType DEFLATE image/svg+xml application/xhtml+xml application/xml
AddOutputFilterByType DEFLATE application/rdf+xml application/rss+xml application/atom+xml
AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript application/json
AddOutputFilterByType DEFLATE application/x-font-ttf application/x-font-otf x-font/eot x-font/ashx
AddOutputFilterByType DEFLATE font/truetype font/opentype
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
ExpiresActive On
ExpiresDefault "access 7 days"
ExpiresByType image/gif "access plus 4 weeks"
ExpiresByType image/jpeg "access plus 4 weeks"
ExpiresByType image/jpg "access plus 4 weeks"
ExpiresByType image/png "access plus 4 weeks"
ExpiresByType image/x-icon "access 1 year"
ExpiresByType application/x-shockwave-flash "access 1 year"
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"
ExpiresByType text/html "access plus 43200 seconds"
ExpiresByType text/plain "access plus 604800 seconds"
RewriteCond %{REQUEST_URI} index.php/(.*)$
RewriteRule ^index.php(.*)$
https://%{SERVER_NAME}$1
[R,NC,R=301,L]
RewriteCond %{REQUEST_URI} !\?
RewriteCond %{REQUEST_URI} !\&
RewriteCond %{REQUEST_URI} !\=
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_URI} ![^\/]$
#RewriteRule ^(.*)\/$ /$1 [R=301,L]
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\ HTTP/
RewriteRule ^index\.html$ / [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ / [R=301,L]
#RewriteCond %{QUERY_STRING} ^route=common/home$
#RewriteCond %{REQUEST_METHOD} !^POST$
#RewriteRule ^index\.php$
http://%{HTTP_HOST
}? [R=301,L]
RewriteCond %{QUERY_STRING} ^(.*)&?page=1&?(.*)$
RewriteRule (.*) $1?%1&%2 [L,R=301]
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
дальше еще идет несколько 301 редиректов прописанных в ручную
Написано
более трёх лет назад
Как сделать массовый редирект страниц вложености?
ArtemDM
@ArtemDM
Автор вопроса
страница site.ru/katalog должна быть доступна по своему URL
Написано
более трёх лет назад
Войдите на сайт
Чтобы задать вопрос и получить на него квалифицированный ответ.
Войти через центр авторизации
Закрыть
Реклама