-1

I'm looking for a little help with .htaccess

We have multiple domains assigned to our host. When one particular URL is used, we want users to be redirected to the appropriate language section of the the site. In other words: IF HTTP_Referrer = http://www.mysitea.com, then rewrite them to http://www.mysiteb.com/fr

I'm not terribly familiar with the format or syntax for Apache .htaccess rules. Help here would be greatly appreciated.

Sumit Bot
  • 1
  • 1

1 Answers1

0

Redirect using 301 in .htaccess

Redirect 301 /oldpage.php http://www.example.com/newpage.html
Redirect 301 /oldpage2.php http://www.example.com

Read more