Seample redirects on the .htaccess
Example simple redirect on the .htaccess using rewrite module of the APACHE (httpd)
#redirects of one URL
RewriteCond %{REQUEST_URI} ^/madres-subrogadas/
RewriteRule .* https://exanple.com/es/moms/ [R=301,L]
#redirect all domain
RewriteRule (.*)$ https://example.com/es/ [R=301,L]
RewriteCond %{REQUEST_URI} ^/madres-subrogadas/
RewriteRule .* https://exanple.com/es/moms/ [R=301,L]
#redirect all domain
RewriteRule (.*)$ https://example.com/es/ [R=301,L]
Comments
Post a Comment