Answers for "htaccess redirect from url to url"

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

redirect from one url to another htaccess

RewriteEngine On
Redirect 301 http://www.domain-name.com/download/?page=download http://www.domain-name.com/download/show
Posted by: Guest on January-28-2022

Code answers related to "htaccess redirect from url to url"

Browse Popular Code Answers by Language