php - How to redirect the URL/public/language to URL/public -


we using kohana 3.2 (php). our website have more language. pass url/language/public/. path must redirect url/public/. can advise us.

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

you can use following redirect in .htaccess :

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

this redirect

  • /en/foo/bar

to

  • /foo/bar

change 302 301 (permanent redirect) when sure redirect working fine.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -