0

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 
Insane Skull
  • 9,220
  • 9
  • 44
  • 63
arulraj
  • 105
  • 2
  • 12

1 Answers1

1

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.

Amit Verma
  • 40,709
  • 21
  • 93
  • 115
  • It is working fine. But i need to redirect only the en/public or ar/public means redirect to /public . Other wise it is working normal. – arulraj Feb 08 '16 at 07:54