如何将URL /公共/语言重定向到URL / public

we are using kohana 3.2 (PHP). Now our website have more language. we will pass the URL/language/public/. This path must be redirect to URL/public/. can you advise us.

en/public/white/css/en_style.css changed to /public/white/css/en_style.css 

You can use the following redirect in .htaccess :

RedirectMatch 302 ^/en/(.+)$ /$1

This will redirect

  • /en/foo/bar

to

  • /foo/bar

Change 302 to 301 (permanent redirect) when you are sure the redirect is working fine.