3

I need remove prefix /en from all URL, eg.

www.mydomain.com/en/foo/bar/index.html -> www.mydomain.com/foo/bar/index.html

I've tried with:

RewriteRule ^/en/(.*) /$1 [L]

or

RewriteRule ^/en/\d+-(.+) /$1 [R,L]

but nothing happens

stecog
  • 2,202
  • 4
  • 30
  • 50

1 Answers1

5

You can use in your .htaccess:

RewriteEngine on 
RewriteRule ^en/(.*) /$1 [NC,L]

Because in .htaccess, RewriteRule first URL never starts with /

Croises
  • 18,570
  • 4
  • 30
  • 47
  • thanks for the explanation, but it seems not work, placed in `.htaccess` file – stecog Sep 01 '15 at 19:45
  • And like that (after edit) ? Do you try to change the url or just to rewrite. Where is the real file (with or without /en/) ? – Croises Sep 01 '15 at 20:46
  • OK it works in this way, `RewriteRule ^en/(.*) http://www.example.com/$1 [NC,L]`, thanks (modify your answer) – stecog Sep 02 '15 at 07:43