Reputation: 102
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
Reputation: 80657
RewriteEngine On
RewriteRule ^en/?$ /en/site.html [R=301,L]
Put the above rule inside htaccess
file.
Upvotes: 1