E-Ching
0
Q:

301 redirect

#For apache .htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
1
Redirect 301 /pagename.php http://www.domain.com/pagename.html
0
301, "Moved Permanently"—recommended for SEO
302, "Found" or "Moved Temporarily"
Meta Refresh 
1
#In .htaccess
  
Redirect 301 /old-page https://www.example.com/new-page
0
#http to https and www to non-www
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]
0
redirect 301 /url_antigua.html http://www.dominio-nuevo.com/url-nueva/
0

New to Communities?

Join the community