Petr Václavek
Petr Václavek

Reputation: 1

.htaccess domain language redirect to folders

I have this situation:

Can you help me with htaccess setup?

Thank you guys!

Upvotes: 0

Views: 1548

Answers (1)

mariusnn
mariusnn

Reputation: 1897

Simple solution for .htaccess:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} www.example.fr$ [NC]
RewriteRule ^$ http://www.example.com/fr/ [L,R=301] 
RewriteCond %{HTTP_HOST} www.example.com$ [NC]
RewriteRule ^$ http://www.example.com/en/ [L,R=301] 

Upvotes: 2

Related Questions