Answers for "htaccess redirect to another domain with path"

3

htaccess redirect old domain to new domain

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^OLDDOMAIN.com$ [NC]
RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]
Posted by: Guest on December-22-2020

Code answers related to "htaccess redirect to another domain with path"

Browse Popular Code Answers by Language