Все сервисы Хабра
Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Закрыть
Задать вопрос
webrapinfo
0
вклад
5
вопросов
0
ответов
0%
решений
Комментарии
Информация
Ответы
Вопросы
Комментарии
Подписки
Нравится
Как можно реализовать автоматическое выключение серверов на Python?
webrapinfo
@webrapinfo
Автор вопроса
Ромзес Панагиотис
, Спасибо, что поправили
Написано
более трёх лет назад
Как настроить вывод 404 ошибки через htaccess?
webrapinfo
@webrapinfo
Автор вопроса
dodo512
, Спасибо закомментировал эту запись и получил 404 код.
Написано
более трёх лет назад
Как настроить редирект 301 с https://zctc.ru/?section=termoobrabotka_galvanicheskih_pokritij на https://zctc.ru/sections/termoobrabotka_galvanicheski?
webrapinfo
@webrapinfo
Автор вопроса
Весь .htaccess с уже установленным вашим вариантом
AddDefaultCharset UTF-8
ErrorDocument 404 /sections/404
RewriteEngine on
RewriteCond %{QUERY_STRING} (?:^|&)section\=(.+)(?:$|&)
RewriteRule ^$ /sections/%1? [L,R=301]
RewriteCond ${REQUEST_FILENAME} !-d
RewriteCond ${REQUEST_FILENAME} !-f
# Каталог товаров
RewriteRule ^catalog/([^/]+)/([^/]+)/([^/]+)/foto/?$ index.php?module=ProductFoto&product=$3 [L]
RewriteRule ^catalog/([^/]+)/([^/]+)/page_([^/]+)/?$ index.php?module=Storefront&category=$1&brand=$2&page=$3 [L]
RewriteRule ^catalog/([^/]+)/page_([^/]+)/?$ index.php?module=Storefront&category=$1&page=$2 [L]
RewriteRule ^catalog/([^/]+)/([^/]+)/?$ index.php?module=Storefront&category=$1&brand=$2 [L]
RewriteRule ^catalog/([^/]+)/?$ index.php?module=Storefront&category=$1 [L]
RewriteRule ^catalog/?$ index.php?module=Storefront& [L]
RewriteRule ^products/([^/]+)/?$ index.php?module=Storefront&product=$1 [L]
RewriteRule ^products/?$ index.php?module=Storefront [L]
RewriteRule ^brands/?$ index.php?module=Storefront [L]
RewriteRule ^brands/([^/]+)/?$ index.php?module=Storefront&brand=$1 [L]
# Поиск товаров
RewriteRule ^search/([^/]+)/?$ index.php?module=Search&keyword=$1 [L]
RewriteRule ^search/?$ index.php?module=Search [L]
# Поиск матерьялов
RewriteRule ^search_materials/([^/]+)/?$ index.php?module=SearchMaterials&keywordmaterials=$1 [L]
RewriteRule ^search_materials/?$ index.php?module=SearchMaterials [L]
# Страницы
RewriteRule ^sections/([^/]+)/?$ index.php?section=$1 [L]
# Статьи
RewriteRule ^articles/([^/]+)/?$ index.php?module=Articles&article_url=$1 [L]
RewriteRule ^articles/?$ index.php?module=Articles [L]
# Новости
RewriteRule ^news/([^/]+)/?$ index.php?module=NewsLine&news_url=$1 [L]
RewriteRule ^news/?$ index.php?module=NewsLine [L]
# Корзина и заказы
RewriteRule ^cart/?$ index.php?module=Cart [L]
RewriteRule ^cart/add/([^/]+)/?$ index.php?module=Cart&product_id=$1 [L]
RewriteRule ^cart/delete/([^/]+)/?$ index.php?module=Cart&delete_product_id=$1 [L]
RewriteRule ^order/([^/]+)/?$ index.php?module=Order&order_code=$1 [L]
RewriteRule ^order/?$ index.php?module=Order [L]
# Для пользователей
RewriteRule ^logout/?$ index.php?module=Login&action=logout [L]
RewriteRule ^login/remind/?$ index.php?module=Login&remind=1 [L]
RewriteRule ^login/?$ index.php?module=Login [L]
RewriteRule ^account/?$ index.php?module=Account [L]
RewriteRule ^registration/?$ index.php?module=Registration [L]
# google sitemap
RewriteRule ^sitemap.xml?$ index.php?module=Sitemap [L]
# pricelists
#RewriteRule ^pricelist.xls?$ index.php?module=Pricelist [L]
#RewriteRule ^yandex.xml?$ index.php?module=Pricelist&format=yandex [L]
# feedback
RewriteRule ^feedback/?$ index.php?module=Feedback [L]
#downloads
RewriteRule ^order/([^/]+)/([^/]+)/?$ download.php?order_code=$1&file=$2 [L]
#RewriteCond %{REQUEST_URI} ^(.*?)\/{2,}(.*?)$
#RewriteRule . %1/%2 [L,R=301]
#RewriteCond %{THE_REQUEST} //
#RewriteRule .* /$0 [R=301,L]
# HTTPS redirect from HTTP
RewriteCond %{HTTP_HOST} ^zctc\.ru [NC]
RewriteCond %{HTTP:X-Forwarded-Proto} ^http$
RewriteCond %{HTTPS} off
RewriteRule (.*)
https://%{HTTP_HOST}%{REQUEST_URI
} [R=301,L]
RewriteCond %{HTTP_HOST} ^www.zctc.ru$ [NC]
RewriteRule ^(.*)$
https://zctc.ru/$1
[R=301,L]
RewriteCond %{THE_REQUEST} /(.*)index.php.*$
RewriteCond %{THE_REQUEST} !/admin/
RewriteRule .* /%1 [R=301,L]
RewriteCond %{THE_REQUEST} /(.*)index.html.*$
RewriteCond %{THE_REQUEST} !/admin/
RewriteRule .* /%1 [R=301,L]
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# Add correct content-type for fonts & SVG
AddType application/font-woff2 .woff2
AddType image/svg+xml .svg
ExpiresActive On
ExpiresDefault "access plus 5 seconds"
# Cache Images
ExpiresByType image/x-icon "access plus 1209600 seconds"
ExpiresByType image/jpeg "access plus 1209600 seconds"
ExpiresByType image/png "access plus 1209600 seconds"
ExpiresByType image/webp "access plus 1209600 seconds"
ExpiresByType image/gif "access plus 1209600 seconds"
ExpiresByType image/svg+xml "access plus 1209600 seconds"
# Cache Fonts
ExpiresByType application/font-woff2 "access plus 1209600 seconds"
ExpiresByType image/svg+xml "access plus 1209600 seconds"
# Cache other content types (CSS, JS, HTML, XML)
ExpiresByType text/css "access plus 604800 seconds"
ExpiresByType text/javascript "access plus 1209600 seconds"
ExpiresByType application/javascript "access plus 1209600 seconds"
ExpiresByType application/x-javascript "access plus 1209600 seconds"
ExpiresByType text/html "access plus 600 seconds"
ExpiresByType application/xhtml+xml "access plus 600 seconds"
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript application/font-woff2 image/svg+xml
Redirect 301 /sections/uslugi
https://zctc.ru/
Redirect 301 /uslugi
https://zctc.ru/
Redirect 301 /?section=chrome%252520at%252520home
https://zctc.ru/sections/chrome%20at%20home
Выдает:
При переходе по URL:
https://zctc.ru/?section=termoobrabotka_galvaniche...
zctc.ru/sections/termoobrabotka_galvanicheskih_pokritij
https://zctc.ru/index.php?section=termoobrabotka_g...
И весит: Сайт zctc.ru выполнил переадресацию слишком много раз.
prnt.sc/1127nfz
Написано
более трёх лет назад
Как настроить редирект 301 с https://zctc.ru/?section=termoobrabotka_galvanicheskih_pokritij на https://zctc.ru/sections/termoobrabotka_galvanicheski?
webrapinfo
@webrapinfo
Автор вопроса
То что нужно для моей задачи. Спасибо большое.
Написано
более трёх лет назад
Как настроить редирект 301 с https://zctc.ru/?section=termoobrabotka_galvanicheskih_pokritij на https://zctc.ru/sections/termoobrabotka_galvanicheski?
webrapinfo
@webrapinfo
Автор вопроса
В моем случаи вызвало цепочку редиректор.
Написано
более трёх лет назад
Как реализовать редирект одной и той же страницы с https на http?
webrapinfo
@webrapinfo
Автор вопроса
Да я оставил. Но на некоторых компьютерах при переходе все равно открывает страницу с https. Я бы хотел принудительно сделать переадресацию на http.
Написано
более трёх лет назад
Откуда идет ссылка?
webrapinfo
@webrapinfo
Автор вопроса
Я тоже так думал. Сейчас пока разбираюсь, что к чему + знаний не сильно много по JS. Спасибо что возитесь с такими нубами как я)
Написано
более трёх лет назад
Откуда идет ссылка?
webrapinfo
@webrapinfo
Автор вопроса
могу задать прямую ссылку в этом случаи
Пример: window.open('http ://site.ru?',
Будет работать?
Написано
более трёх лет назад
Откуда идет ссылка?
webrapinfo
@webrapinfo
Автор вопроса
Подскажите как ее поменять на другую?
Написано
более трёх лет назад
Войдите на сайт
Чтобы задать вопрос и получить на него квалифицированный ответ.
Войти через центр авторизации
Закрыть
Реклама