Peter
Peter

Reputation: 102

.htaccess mod_rewrite redirect directory to URL

I have problem with redirection directory to URL. I try few ideas from here and nothing working with my problem.

I want redirect directory adres to URL like:

http://www.x.yz/en to http://www.x.yz/en/site.html
http://www.x.yz/en/ to http://www.x.yz/en/site.html

Any ideas?

Upvotes: 1

Views: 42

Answers (1)

hjpotter92
hjpotter92

Reputation: 80657

RewriteEngine On
RewriteRule ^en/?$ /en/site.html [R=301,L]

Put the above rule inside htaccess file.

Upvotes: 1

Related Questions