Answers for "url redirect in .htaccess file"

3

.htaccess redirect to another 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
0

.htaccess Redirects

Redirect /old_dir/ http://www.yourdomain.com/new_dir/index.html
Posted by: Guest on December-03-2021

Browse Popular Code Answers by Language