Есть такие рекомендации Для просмотра ссылки Войди или Зарегистрируйся
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Ну и на хостинге это настраивается в соответствующей опции.Сайт на https, Joomla 3. Как сделать редирект с Для просмотра ссылки Войдиили Зарегистрируйся на site.com?
Redirect 301 /staraya-stranitsa.html https://vash-sait.ru/novaya-stranitsa.html[code]
<IfModule mod_headers.c>
<FilesMatch "\.(js|css|xml|gz|swf|ico|woff|ttf|otf|eot|svg)$">
Header append Vary Accept-Encoding
</FilesMatch>
</IfModule>
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Order Allow,Deny
Deny from 109.207.13.0/109.207.13.255
Редирект с www почему-то не работает, получаю 403 ошибку на ngix
server {
# ...
server_name "~^www\.(.*)$" ;
return 301 $scheme://$1$request_uri;
}
server {
server_name www.example.com;
rewrite ^(.+)$ http://example.com/$1 permanent;
}
server {
#...
if ($host ~* www\.(.*)) {
set $host_without_www $1;
rewrite ^(.*)$ http://$host_without_www$1 permanent;
}
}
Redirect 301 /old-category/old-product-subcategory/product /new-category/new-subcategory
Redirect 301 /old-category/old-subcategory /new-category?params
Redirect 301 /some-old-cat /new-cat/new-sub-cat
RewriteRule ^(old-category/). /new-cat/new-subcat [R=301,L]
оба не работают
RedirectMatch /old-category/.* /new-cat/new-subcat
Redirect 301 /old-category /new-cat/new-subcat