|
|
Ok!
|
|
|
Ok!
|
|---|---|---|---|---|
| 307 | <meta http-equiv="refresh" content="0;url=https://spa-cavefish.ru/odintsovo"> | meta, redirect, редирект html | 200 | Редирект 301 средствами html |
| 249 | RedirectMatch 301 ^/my_redirected_folder/ http://www.new-website.com/ | redirect, редирект | 220 | В корневом htaccess редирект с папки на другой сайт |
| 232 | if(preg_match('/[A-Z]/', $_SERVER['REQUEST_URI'])){
LocalRedirect(strtolower($_SERVER['REQUEST_URI']), 0, "301 Moved permanently");
} | bitrix, редирект, localredirect | 9000 | Битрикс редирект в обход htaccess с заглавных букв в УРЛ на маленькие |
| 193 | RedirectMatch 301 /(.*)/$ /$1.html | редирект, html | 560 | Редирект с папки на файл .html |
| 158 | RewriteRule ^receipt/(.+)/$ receipt/full.php?tag=$1 [L] | редирект, строка на папку | 10970 | Перевод в htaccess с get параметра на папку и садресом |
| 115 | RewriteCond %{REQUEST_URI} !^/(catalog/special/action)
RewriteCond %{REQUEST_URI} !^/(catalog/special/hit)
RewriteCond %{REQUEST_URI} !^/(catalog/special/new)
RewriteCond %{REQUEST_URI} ^/catalog/special/(.*)/
RewriteRule ^.*$ /404.php [L] | 404, редирект | 1090 | Редирект на 404 всех из списка кроме указанных |
| 41 | RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www.)?(.*)$ [NC]
RewriteRule (.*) https://%1%{REQUEST_URI} [L,R=301] | redirect, редирект | 3500 | Редирект с http на https + с www на non-www |